guy 7 years ago
parent
commit
2cd3ba9eaf
  1. 2
      dist/bundle.js
  2. 2
      dist/core.js
  3. 4
      dist/fineui.js
  4. 2
      dist/fineui.min.js
  5. 2
      src/core/widget.js

2
dist/bundle.js vendored

@ -12517,7 +12517,6 @@ BI.Widget = BI.inherit(BI.OB, {
},
_render: function(){
this._children = {};
this.beforeCreate && this.beforeCreate();
this._initElement();
this._initEffects();
@ -12559,6 +12558,7 @@ BI.Widget = BI.inherit(BI.OB, {
if (o.data) {
this.element.data(o.data);
}
this._children = {};
},
_initElementWidth: function () {

2
dist/core.js vendored

@ -12517,7 +12517,6 @@ BI.Widget = BI.inherit(BI.OB, {
},
_render: function(){
this._children = {};
this.beforeCreate && this.beforeCreate();
this._initElement();
this._initEffects();
@ -12559,6 +12558,7 @@ BI.Widget = BI.inherit(BI.OB, {
if (o.data) {
this.element.data(o.data);
}
this._children = {};
},
_initElementWidth: function () {

4
dist/fineui.js vendored

@ -12690,7 +12690,6 @@ BI.Widget = BI.inherit(BI.OB, {
},
_render: function(){
this._children = {};
this.beforeCreate && this.beforeCreate();
this._initElement();
this._initEffects();
@ -12732,6 +12731,7 @@ BI.Widget = BI.inherit(BI.OB, {
if (o.data) {
this.element.data(o.data);
}
this._children = {};
},
_initElementWidth: function () {
@ -27506,7 +27506,7 @@ Data.Source = BISource = {
needPop && popTarget();
};
var _init = BI.Widget.prototype._render;
var _render = BI.Widget.prototype._render;
BI.Widget.prototype._render = function () {
if (window.Fix && this._store) {
initWatch(this, this.watch);

2
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
src/core/widget.js

@ -60,7 +60,6 @@ BI.Widget = BI.inherit(BI.OB, {
},
_render: function(){
this._children = {};
this.beforeCreate && this.beforeCreate();
this._initElement();
this._initEffects();
@ -102,6 +101,7 @@ BI.Widget = BI.inherit(BI.OB, {
if (o.data) {
this.element.data(o.data);
}
this._children = {};
},
_initElementWidth: function () {

Loading…
Cancel
Save