Browse Source

Merge pull request #607 in VISUAL/fineui from ~DAILER/fineui:master to master

* commit 'ae7536500b7bd1adc2c935457341e9ed833ec20b':
  build
  无jira任务,invisible:true 的不被挂出到DOM还是要的.
es6
Dailer 6 years ago
parent
commit
f7b2071363
  1. 2
      dist/bundle.js
  2. 2
      dist/bundle.min.js
  3. 2
      dist/core.js
  4. 2
      dist/fineui.js
  5. 2
      dist/fineui.min.js
  6. 2
      src/core/widget.js

2
dist/bundle.js vendored

@ -21571,7 +21571,7 @@ _.extend(BI.OB.prototype, {
_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) {

2
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/core.js vendored

@ -21571,7 +21571,7 @@ _.extend(BI.OB.prototype, {
_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) {

2
dist/fineui.js vendored

@ -21810,7 +21810,7 @@ _.extend(BI.OB.prototype, {
_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) {

2
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

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