From 7be23c269c6e8eea502dd473cbe00b359cb46d2b Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Tue, 25 Nov 2008 03:24:31 +0000 Subject: Remove a stray comma that was making IE sad. --- themes/default/js/user.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'themes/default/js/user.js') diff --git a/themes/default/js/user.js b/themes/default/js/user.js index a0ff43cd..8ee543bf 100644 --- a/themes/default/js/user.js +++ b/themes/default/js/user.js @@ -1,6 +1,6 @@ /** * @todo preventDefault() not working in IE 6 and 7 - * @todo Close link should be reusable + * @todo Close link should be reusable */ $("document").ready(function() { @@ -10,13 +10,13 @@ $("document").ready(function() { $.get(url, function(data) { $('#gLoginLink').hide(); $("#gLoginMenu").append('
  • X
  • '); - $("#gLoginMenu li:last").addClass("gClose").show(); + $("#gLoginMenu li:last").addClass("gClose").show(); $("#gLoginMenu .gClose a").click(function(){ $("#gLoginForm").remove(); $("#gLoginMenu .gClose").remove(); $("#gLoginLink").show(); $("input#gUsername").val(""); - $("input#gPassword").val(""); + $("input#gPassword").val(""); }); $("#gLoginFormContainer").html(data).hide().fadeIn(); ajaxify_login_form(); @@ -33,6 +33,6 @@ function ajaxify_login_form() { } else { ajaxify_login_form(); } - }, + } }); } -- cgit v1.2.3