mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
since mac has a better way to display busy status, don't set the busy cursor here in JS. r=ben, bug#52108
This commit is contained in:
parent
cdd57c3110
commit
9ad709df93
@ -1716,8 +1716,12 @@ function FillInHTMLTooltip ( tipElement )
|
||||
|
||||
function EnableBusyCursor(doEnable) {
|
||||
if (doEnable) {
|
||||
window.setCursor("spinning");
|
||||
window._content.setCursor("spinning");
|
||||
// set the spinning cursor everywhere but mac, we have our own way to
|
||||
// do this thankyouverymuch.
|
||||
if ( navigator.platform.indexOf("Mac") > 0 ) {
|
||||
window.setCursor("spinning");
|
||||
window._content.setCursor("spinning");
|
||||
}
|
||||
}
|
||||
else {
|
||||
window.setCursor("auto");
|
||||
|
Loading…
Reference in New Issue
Block a user