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});
|
$.ajaxSetup({cache: false});
|
||||||
msie = $.browser.msie ;
|
msie = $.browser.msie ;
|
||||||
NavUpdate();
|
NavUpdate();
|
||||||
sparkler();
|
|
||||||
// Allow folks to stop the ajax page updates with the pause/break key
|
// Allow folks to stop the ajax page updates with the pause/break key
|
||||||
$(document).keypress(function(event) {
|
$(document).keypress(function(event) {
|
||||||
if(event.keyCode == '19') {
|
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() {
|
function NavUpdate() {
|
||||||
|
|
||||||
if($('#live-network').length) { src = 'network'; liveUpdate(); }
|
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 {
|
.sparkle {
|
||||||
cursor: crosshair;
|
cursor: url('lock.cur'), pointer;
|
||||||
/* cursor: pointer !important; */
|
/* cursor: pointer !important; */
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue