Browse Source

Merge pull request #308 in ~GUY/fineui from ~YOUNG/fineuig:master to master

* commit 'c1a72092e16bdde2fd716ea85b5c9ac165a5f9c5':
  _children提出来
es6
Young 7 years ago
parent
commit
bbf464c6b2
  1. 2
      dist/bundle.js
  2. 2
      dist/core.js
  3. 2
      dist/fineui.js
  4. 2
      src/core/widget.js

2
dist/bundle.js vendored

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

2
dist/core.js vendored

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

2
dist/fineui.js vendored

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

2
src/core/widget.js

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

Loading…
Cancel
Save