Young 7 years ago
parent
commit
9415f5bc6f
  1. 3
      dist/bundle.js
  2. 3
      dist/core.js
  3. 3
      dist/fineui.js
  4. 2
      src/core/widget.js

3
dist/bundle.js vendored

@ -12521,6 +12521,7 @@ BI.Widget = BI.inherit(BI.OB, {
this._initElement();
this._initEffects();
this.created && this.created();
this._children = {};
},
/**
@ -12531,7 +12532,6 @@ 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;
@ -12559,6 +12559,7 @@ BI.Widget = BI.inherit(BI.OB, {
if (o.data) {
this.element.data(o.data);
}
this._children = {};
},
_initElementWidth: function () {

3
dist/core.js vendored

@ -12521,6 +12521,7 @@ BI.Widget = BI.inherit(BI.OB, {
this._initElement();
this._initEffects();
this.created && this.created();
this._children = {};
},
/**
@ -12531,7 +12532,6 @@ 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;
@ -12559,6 +12559,7 @@ BI.Widget = BI.inherit(BI.OB, {
if (o.data) {
this.element.data(o.data);
}
this._children = {};
},
_initElementWidth: function () {

3
dist/fineui.js vendored

@ -12694,6 +12694,7 @@ BI.Widget = BI.inherit(BI.OB, {
this._initElement();
this._initEffects();
this.created && this.created();
this._children = {};
},
/**
@ -12704,7 +12705,6 @@ 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;
@ -12732,6 +12732,7 @@ BI.Widget = BI.inherit(BI.OB, {
if (o.data) {
this.element.data(o.data);
}
this._children = {};
},
_initElementWidth: function () {

2
src/core/widget.js

@ -64,6 +64,7 @@ BI.Widget = BI.inherit(BI.OB, {
this._initElement();
this._initEffects();
this.created && this.created();
this._children = {};
},
/**
@ -74,7 +75,6 @@ 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