Browse Source

Merge pull request #234 in FUI/fineui from ~GUY/fineui:master to master

* commit 'cdf7bc8332c4668c9b5aaf5f16a725004f0db7ce':
  update
  update
  update
  update
  _children提出来
es6
guy 7 years ago
parent
commit
3fddd61773
  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