aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-10-08 22:21:34 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-10-08 22:21:34 -0700
commit4714f3a9e15788c8b4b444dd8507c9e104f16a4e (patch)
tree983c7e90b958cfffcc7589ab587218e3739aa3de /include
parent938b1677f8fdc2bddeb43d964a2da5983c687be6 (diff)
downloadvolse-hubzilla-4714f3a9e15788c8b4b444dd8507c9e104f16a4e.tar.gz
volse-hubzilla-4714f3a9e15788c8b4b444dd8507c9e104f16a4e.tar.bz2
volse-hubzilla-4714f3a9e15788c8b4b444dd8507c9e104f16a4e.zip
sort out the magic cursor
Diffstat (limited to 'include')
-rw-r--r--include/main.js15
1 files changed, 0 insertions, 15 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(); }