summaryrefslogtreecommitdiff
path: root/themes/default/js
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2008-11-12 17:08:53 +0000
committerTim Almdal <tnalmdal@shaw.ca>2008-11-12 17:08:53 +0000
commit75527db81f47219882d9e1cedeebf406c99d0cf6 (patch)
tree555e0973847d25200915697050fc1ddf043cac27 /themes/default/js
parent2019e9a931ffde9b2358241aa1844b4a826a76f9 (diff)
Clean up alignment in the login menu when the login form is displayed
Diffstat (limited to 'themes/default/js')
-rw-r--r--themes/default/js/login.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/themes/default/js/login.js b/themes/default/js/login.js
index bc18fe41..a598f39a 100644
--- a/themes/default/js/login.js
+++ b/themes/default/js/login.js
@@ -1,11 +1,11 @@
function show_login() {
- $("#gLoginLink").fadeOut("fast");
- $("#gLoginForm").fadeIn("fast");
- $("#gLoginClose").fadeIn("fast");
+ $("#gLoginLink").css({display: "none"});
+ $("#gLoginForm").css({display: "block"});
+ $("#gLoginClose").css({display: "inline"});
}
function close_login() {
- $("#gLoginLink").fadeIn("fast");
- $("#gLoginForm").fadeOut("fast");
- $("#gLoginClose").fadeOut("fast");
+ $("#gLoginLink").css({display: "inline"});
+ $("#gLoginForm").css({display: "none"});
+ $("#gLoginClose").css({display: "none"});
} \ No newline at end of file