diff options
author | Arun Persaud <arun@nubati.net> | 2011-10-05 22:30:33 -0700 |
---|---|---|
committer | Arun Persaud <apersaud@lbl.gov> | 2011-10-05 22:34:23 -0700 |
commit | 65df59544c943a90ae2858b1359e6b8a5065e145 (patch) | |
tree | 56811ae9349606686d7a1eaa87381e85aaca9707 /include/output.php | |
parent | f78018b77599b411a743010c4a8bbb7e3385f111 (diff) | |
download | e-DoKo-65df59544c943a90ae2858b1359e6b8a5065e145.tar.gz e-DoKo-65df59544c943a90ae2858b1359e6b8a5065e145.tar.bz2 e-DoKo-65df59544c943a90ae2858b1359e6b8a5065e145.zip |
cleared up the look of the front page a bit
Diffstat (limited to 'include/output.php')
-rw-r--r-- | include/output.php | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/include/output.php b/include/output.php index 1f67bd1..91030ab 100644 --- a/include/output.php +++ b/include/output.php @@ -413,6 +413,10 @@ function output_header() $(".gameshidesession").hide(); }); + $("ul.loginregister").click(function () { + $(".dologin").slideToggle(); + $(".doregister").slideToggle(); + }); }); </script> @@ -488,12 +492,6 @@ function output_status() echo "<div class=\"lastlogin\"><span>"._('last login').": ".date("r",$unixtime)."</span></div>\n"; } - else - { - echo "\n<div class=\"status\">\n"; - echo "<a href=\"".$INDEX."\">"._('login')."</a>\n"; - echo "</div>\n"; - } return; } |