animate the sparkler, author was getting sparkled on own page
This commit is contained in:
@@ -43,6 +43,7 @@
|
||||
$.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') {
|
||||
@@ -59,6 +60,20 @@
|
||||
});
|
||||
});
|
||||
|
||||
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(); }
|
||||
|
Reference in New Issue
Block a user