зеркало из https://github.com/mozilla/gecko-dev.git
Bug 629969 - Don't show status messages for XHR requests. r=jag/gavin
This commit is contained in:
Родитель
86211121ca
Коммит
0cbc26c292
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче