diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-11-25 03:24:31 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-11-25 03:24:31 +0000 |
commit | 7be23c269c6e8eea502dd473cbe00b359cb46d2b (patch) | |
tree | 4b8fd226c08b08371eae1199b242b20a419e2e67 /themes/default/js | |
parent | 6935cfef40a6b24cc03a544c45a24ebe7ab3fe6a (diff) |
Remove a stray comma that was making IE sad.
Diffstat (limited to 'themes/default/js')
-rw-r--r-- | themes/default/js/user.js | 8 |
1 files changed, 4 insertions, 4 deletions
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('<li><a href="#">X</a></li>'); - $("#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(); } - }, + } }); } |