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:
pinkerton%netscape.com 2000-09-12 22:52:21 +00:00
Родитель 35ba98948e
Коммит adfa88a416
1 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -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");