diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-10-08 22:21:34 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-10-08 22:21:34 -0700 |
commit | 4714f3a9e15788c8b4b444dd8507c9e104f16a4e (patch) | |
tree | 983c7e90b958cfffcc7589ab587218e3739aa3de | |
parent | 938b1677f8fdc2bddeb43d964a2da5983c687be6 (diff) | |
download | volse-hubzilla-4714f3a9e15788c8b4b444dd8507c9e104f16a4e.tar.gz volse-hubzilla-4714f3a9e15788c8b4b444dd8507c9e104f16a4e.tar.bz2 volse-hubzilla-4714f3a9e15788c8b4b444dd8507c9e104f16a4e.zip |
sort out the magic cursor
-rw-r--r-- | include/main.js | 15 | ||||
-rwxr-xr-x | view/theme/default/lock.cur | bin | 0 -> 4286 bytes | |||
-rw-r--r-- | view/theme/default/style.css | 2 |
3 files changed, 1 insertions, 16 deletions
diff --git a/include/main.js b/include/main.js index f87d87fb9..f0cb8571b 100644 --- a/include/main.js +++ b/include/main.js @@ -29,7 +29,6 @@ $.ajaxSetup({cache: false}); msie = $.browser.msie ; NavUpdate(); - sparkler(); // Allow folks to stop the ajax page updates with the pause/break key $(document).keypress(function(event) { if(event.keyCode == '19') { @@ -46,20 +45,6 @@ }); }); - var spark = false; - function sparkler() { - if(spark) { - $('.sparkle').css({cursor: 'pointer'}); - spark = false; - } - else { - $('.sparkle').css({cursor: 'crosshair'}); - spark = true; - } - setTimeout(sparkler,500); - } - - function NavUpdate() { if($('#live-network').length) { src = 'network'; liveUpdate(); } diff --git a/view/theme/default/lock.cur b/view/theme/default/lock.cur Binary files differnew file mode 100755 index 000000000..892c5e851 --- /dev/null +++ b/view/theme/default/lock.cur diff --git a/view/theme/default/style.css b/view/theme/default/style.css index 8ccecc9e0..b8de47826 100644 --- a/view/theme/default/style.css +++ b/view/theme/default/style.css @@ -1688,6 +1688,6 @@ a.mail-list-link:hover { } .sparkle { - cursor: crosshair; + cursor: url('lock.cur'), pointer; /* cursor: pointer !important; */ } |