mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1003888 - Replaced getter for isReady() instead of a function(). r=mconley
This commit is contained in:
parent
860c0a0f3e
commit
bbec595a0b
@ -200,7 +200,7 @@ const PanelUI = {
|
||||
}
|
||||
},
|
||||
|
||||
isReady: function() {
|
||||
get isReady() {
|
||||
return !!this._isReady;
|
||||
},
|
||||
|
||||
|
@ -191,7 +191,7 @@ CustomizeMode.prototype = {
|
||||
// is really not going to work. We pass "true" to ensureReady to
|
||||
// indicate that we're handling calling startBatchUpdate and
|
||||
// endBatchUpdate.
|
||||
if (!window.PanelUI.isReady()) {
|
||||
if (!window.PanelUI.isReady) {
|
||||
yield window.PanelUI.ensureReady(true);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user