Browse Source

JSY-22136

es6
Lee94 2 years ago
parent
commit
f9422ec104
  1. 2
      src/core/4.widget.js

2
src/core/4.widget.js

@ -392,7 +392,7 @@
*/ */
_mount: function (force, deep, lifeHook, predicate, layer) { _mount: function (force, deep, lifeHook, predicate, layer) {
var self = this; var self = this;
if (!force && (this._isMounted || !this.isVisible() || this.__asking === true || !(this._isRoot === true || (this._parent && this._parent._isMounted === true)))) { if (!force && (this._isMounted || this.__asking === true || !(this._isRoot === true || (this._parent && this._parent._isMounted === true)))) {
return false; return false;
} }
layer = layer || 0; layer = layer || 0;

Loading…
Cancel
Save