Bug 629969 - Don't show status messages for XHR requests. r=jag/gavin

This commit is contained in:
Dão Gottwald 2011-01-31 07:27:03 +01:00
Родитель 86211121ca
Коммит 0cbc26c292
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -4082,7 +4082,11 @@ var XULBrowserWindow = {
},
updateStatusField: function () {
var text = this.status || this.jsStatus || this.jsDefaultStatus || this.defaultStatus;
var text;
if (this._busyUI)
text = this.status;
if (!text)
text = this.jsStatus || this.jsDefaultStatus || this.defaultStatus;
// check the current value so we don't trigger an attribute change
// and cause needless (slow!) UI updates