guy 7 years ago
parent
commit
a8904be357
  1. 4
      dist/base.js
  2. 9
      dist/bundle.js
  3. 72
      dist/bundle.min.js
  4. 5
      dist/core.js
  5. 9
      dist/fineui.js
  6. 30
      dist/fineui.min.js
  7. 4
      src/base/pane.js
  8. 5
      src/core/widget.js

4
dist/base.js vendored

@ -224,14 +224,14 @@ BI.Pane = BI.inherit(BI.Widget, {
_init: function () {
BI.Pane.superclass._init.apply(this, arguments);
if (this.beforeInit) {
if (this.__async) {
this.loading();
}
},
_render: function () {
BI.Pane.superclass._render.apply(this, arguments);
if (this.beforeInit) {
if (this.__async) {
this.loaded();
}
},

9
dist/bundle.js vendored

@ -12518,13 +12518,18 @@ BI.Widget = BI.inherit(BI.OB, {
this._initVisual();
this._initState();
if (this.beforeInit) {
this.__asking = true;
this.beforeInit(BI.bind(this._render, this));
if (this.__asking === true) {
this.__async = true;
}
} else {
this._render();
}
},
_render: function () {
this.__asking = false;
this.beforeCreate && this.beforeCreate();
this._initElement();
this._initEffects();
@ -26258,14 +26263,14 @@ BI.Pane = BI.inherit(BI.Widget, {
_init: function () {
BI.Pane.superclass._init.apply(this, arguments);
if (this.beforeInit) {
if (this.__async) {
this.loading();
}
},
_render: function () {
BI.Pane.superclass._render.apply(this, arguments);
if (this.beforeInit) {
if (this.__async) {
this.loaded();
}
},

72
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

5
dist/core.js vendored

@ -12518,13 +12518,18 @@ BI.Widget = BI.inherit(BI.OB, {
this._initVisual();
this._initState();
if (this.beforeInit) {
this.__asking = true;
this.beforeInit(BI.bind(this._render, this));
if (this.__asking === true) {
this.__async = true;
}
} else {
this._render();
}
},
_render: function () {
this.__asking = false;
this.beforeCreate && this.beforeCreate();
this._initElement();
this._initEffects();

9
dist/fineui.js vendored

@ -12719,13 +12719,18 @@ BI.Widget = BI.inherit(BI.OB, {
this._initVisual();
this._initState();
if (this.beforeInit) {
this.__asking = true;
this.beforeInit(BI.bind(this._render, this));
if (this.__asking === true) {
this.__async = true;
}
} else {
this._render();
}
},
_render: function () {
this.__asking = false;
this.beforeCreate && this.beforeCreate();
this._initElement();
this._initEffects();
@ -28012,14 +28017,14 @@ BI.Pane = BI.inherit(BI.Widget, {
_init: function () {
BI.Pane.superclass._init.apply(this, arguments);
if (this.beforeInit) {
if (this.__async) {
this.loading();
}
},
_render: function () {
BI.Pane.superclass._render.apply(this, arguments);
if (this.beforeInit) {
if (this.__async) {
this.loaded();
}
},

30
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

4
src/base/pane.js

@ -19,14 +19,14 @@ BI.Pane = BI.inherit(BI.Widget, {
_init: function () {
BI.Pane.superclass._init.apply(this, arguments);
if (this.beforeInit) {
if (this.__async) {
this.loading();
}
},
_render: function () {
BI.Pane.superclass._render.apply(this, arguments);
if (this.beforeInit) {
if (this.__async) {
this.loaded();
}
},

5
src/core/widget.js

@ -53,13 +53,18 @@ BI.Widget = BI.inherit(BI.OB, {
this._initVisual();
this._initState();
if (this.beforeInit) {
this.__asking = true;
this.beforeInit(BI.bind(this._render, this));
if (this.__asking === true) {
this.__async = true;
}
} else {
this._render();
}
},
_render: function () {
this.__asking = false;
this.beforeCreate && this.beforeCreate();
this._initElement();
this._initEffects();

Loading…
Cancel
Save