diff --git a/bi/base.js b/bi/base.js index 9e03201b1..fcb3cb987 100644 --- a/bi/base.js +++ b/bi/base.js @@ -279,7 +279,7 @@ BI.Pane = BI.inherit(BI.Widget, { loaded: function () { var self = this, o = this.options; - BI.Maskers.remove(self.getName()); + BI.Layers.remove(self.getName()); this._loading && this._loading.destroy(); this._loading && (this._loading = null); o.onLoaded(); diff --git a/docs/base.js b/docs/base.js index 9e03201b1..fcb3cb987 100644 --- a/docs/base.js +++ b/docs/base.js @@ -279,7 +279,7 @@ BI.Pane = BI.inherit(BI.Widget, { loaded: function () { var self = this, o = this.options; - BI.Maskers.remove(self.getName()); + BI.Layers.remove(self.getName()); this._loading && this._loading.destroy(); this._loading && (this._loading = null); o.onLoaded(); diff --git a/src/base/pane.js b/src/base/pane.js index 695cb2f1b..1ef5b7f29 100644 --- a/src/base/pane.js +++ b/src/base/pane.js @@ -78,7 +78,7 @@ BI.Pane = BI.inherit(BI.Widget, { loaded: function () { var self = this, o = this.options; - BI.Maskers.remove(self.getName()); + BI.Layers.remove(self.getName()); this._loading && this._loading.destroy(); this._loading && (this._loading = null); o.onLoaded();