Making collapse happen on a timer to deal with Tp regression

This commit is contained in:
hyatt%netscape.com 2002-10-09 09:22:09 +00:00
Родитель 294867fc4d
Коммит 017396eeb4
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -2922,6 +2922,7 @@ nsBrowserStatusHandler.prototype =
}
// Turn the status meter on.
this.statusMeter.value = 0; // be sure to clear the progress bar
if (gProgressCollapseTimer) {
window.cancelTimeout(gProgressCollapseTimer);
gProgressCollapseTimer = null;
@ -2986,8 +2987,6 @@ nsBrowserStatusHandler.prototype =
}
// Turn the progress meter and throbber off.
this.statusMeter.value = 0; // be sure to clear the progress bar
gProgressCollapseTimer = window.setTimeout("gProgressMeterPanel.collapsed = true; gProgressCollapseTimer = null;",
100);