sort out the magic cursor

This commit is contained in:
Mike Macgirvin 2010-10-08 22:21:34 -07:00
parent 938b1677f8
commit 4714f3a9e1
3 changed files with 1 additions and 16 deletions

View file

@ -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(); }