mirror of
https://github.com/friendica/friendica
synced 2025-04-23 09:10:10 +00:00
sort out the magic cursor
This commit is contained in:
parent
938b1677f8
commit
4714f3a9e1
3 changed files with 1 additions and 16 deletions
|
@ -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(); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue