Browse Source

Merge pull request #162411 in DEC/fineui from master to feature/x

* commit '1c28b1fc4d6a49c051ec02b8ef7e968b585468f9':
  JSY-22136
master
superman 2 years ago
parent
commit
a1c8e54032
  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