Browse Source

无jira任务,invisible:true 的不被挂出到DOM还是要的.

es6
Dailer 6 years ago
parent
commit
d1c7e4562f
  1. 2
      src/core/widget.js

2
src/core/widget.js

@ -180,7 +180,7 @@
_mount: function () {
var self = this;
var isMounted = this._isMounted;
if (isMounted || this.__asking === true) {
if (isMounted || !this.isVisible() || this.__asking === true) {
return;
}
if (this._isRoot === true) {

Loading…
Cancel
Save