aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
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(); }