Young 7 years ago
parent
commit
338f34d168
  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,7 +12517,6 @@ BI.Widget = BI.inherit(BI.OB, {
},
_render: function(){
this._children = {};
this.beforeCreate && this.beforeCreate();
this._initElement();
this._initEffects();
@ -12532,6 +12531,7 @@ BI.Widget = BI.inherit(BI.OB, {
var o = this.options;
this.widgetName = o.widgetName || BI.uniqueId("widget");
this._isRoot = o.root;
this._children = {};
if (BI.isWidget(o.element)) {
if (o.element instanceof BI.Widget) {
this._parent = o.element;

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();
@ -12532,6 +12531,7 @@ BI.Widget = BI.inherit(BI.OB, {
var o = this.options;
this.widgetName = o.widgetName || BI.uniqueId("widget");
this._isRoot = o.root;
this._children = {};
if (BI.isWidget(o.element)) {
if (o.element instanceof BI.Widget) {
this._parent = o.element;

2
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();
@ -12705,6 +12704,7 @@ BI.Widget = BI.inherit(BI.OB, {
var o = this.options;
this.widgetName = o.widgetName || BI.uniqueId("widget");
this._isRoot = o.root;
this._children = {};
if (BI.isWidget(o.element)) {
if (o.element instanceof BI.Widget) {
this._parent = o.element;

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();
@ -75,6 +74,7 @@ BI.Widget = BI.inherit(BI.OB, {
var o = this.options;
this.widgetName = o.widgetName || BI.uniqueId("widget");
this._isRoot = o.root;
this._children = {};
if (BI.isWidget(o.element)) {
if (o.element instanceof BI.Widget) {
this._parent = o.element;

Loading…
Cancel
Save