sort out the magic cursor
This commit is contained in:
parent
938b1677f8
commit
4714f3a9e1
|
@ -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(); }
|
||||
|
|
BIN
view/theme/default/lock.cur
Executable file
BIN
view/theme/default/lock.cur
Executable file
Binary file not shown.
After Width: | Height: | Size: 4.2 KiB |
|
@ -1688,6 +1688,6 @@ a.mail-list-link:hover {
|
|||
}
|
||||
|
||||
.sparkle {
|
||||
cursor: crosshair;
|
||||
cursor: url('lock.cur'), pointer;
|
||||
/* cursor: pointer !important; */
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue