guy 7 years ago
parent
commit
2f3104fa98
  1. 2
      dist/core.js
  2. 2
      dist/widget.js
  3. 2
      src/core/widget.js
  4. 2
      src/widget/multitree/multi.tree.popup.js

2
dist/core.js vendored

@ -14434,7 +14434,7 @@ BI.Widget = BI.inherit(BI.OB, {
})
})
}
if (this._isRoot === true || (!(this instanceof BI.Layout) && (this._parent && this._parent._isMounted))) {
if (this._isRoot === true || !(this instanceof BI.Layout)) {
this._mount();
}
},

2
dist/widget.js vendored

@ -19927,7 +19927,7 @@ BI.MultiTreePopup = BI.inherit(BI.Pane, {
baseCls: 'bi-multi-tree-popup',
maxWidth: 'auto',
minWidth: 100,
maxHeight: 250,
maxHeight: 400,
onLoaded: BI.emptyFn
});
},

2
src/core/widget.js

@ -135,7 +135,7 @@ BI.Widget = BI.inherit(BI.OB, {
})
})
}
if (this._isRoot === true || (!(this instanceof BI.Layout) && (this._parent && this._parent._isMounted))) {
if (this._isRoot === true || !(this instanceof BI.Layout)) {
this._mount();
}
},

2
src/widget/multitree/multi.tree.popup.js

@ -10,7 +10,7 @@ BI.MultiTreePopup = BI.inherit(BI.Pane, {
baseCls: 'bi-multi-tree-popup',
maxWidth: 'auto',
minWidth: 100,
maxHeight: 250,
maxHeight: 400,
onLoaded: BI.emptyFn
});
},

Loading…
Cancel
Save