Browse Source

Merge pull request #286 in FUI/fineui from ~IMP/fineui_fui:master to master

* commit 'dc78a284b4f24d787b34e368760ec1a666b1b707':
  beforeInit和mounted同时存在的时候,mounted未在render之后执行
  update
  webui打包
es6
guy 6 years ago
parent
commit
cdd8402dca
  1. 2
      dist/bundle.js
  2. 92
      dist/bundle.min.js
  3. 2
      dist/core.js
  4. 2
      dist/fineui.js
  5. 329
      dist/fineui.min.js
  6. 2
      src/core/widget.js

2
dist/bundle.js vendored

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

92
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/core.js vendored

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

2
dist/fineui.js vendored

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

329
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
src/core/widget.js

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

Loading…
Cancel
Save