diff options
author | deva <deva> | 2010-02-28 10:54:45 +0000 |
---|---|---|
committer | deva <deva> | 2010-02-28 10:54:45 +0000 |
commit | 90ed713a8c23e77028a413e9c3a7e88b51575b7c (patch) | |
tree | 248e0d95d16c05f16e51981fd559c33cdff31882 /utils | |
parent | a87d1861c843289cbc925fd26447a00621819ec8 (diff) |
Changed how the admin modules is shown.
Diffstat (limited to 'utils')
-rw-r--r-- | utils/admin.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/admin.php b/utils/admin.php index ab22a9a..f967c76 100644 --- a/utils/admin.php +++ b/utils/admin.php @@ -1,6 +1,6 @@ <?php /* -*- Mode: php; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ ?> <div class="admin" id="admin"> - <span class="header">Admin</span> + <span class="windowtitle header">Admin</span> <div class="button close"><a href="?page=">X</a></div> <?php global $loggedin; @@ -198,8 +198,8 @@ function OnMouseUp(e) var e = window.event; // Store new coordinate - createCookie('admin_x', _offsetX + e.clientX - _startX); - createCookie('admin_y', _offsetY + e.clientY - _startY); + createCookie('admin_x', _offsetX + e.clientX - _startX, 1000); + createCookie('admin_y', _offsetY + e.clientY - _startY, 1000); } } //--> |