Browse Source

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

* commit '5bf3e23eb5ff1bfc3917ccea04a3362b053889a8':
  update
  update
es6
Young 7 years ago
parent
commit
8798d17857
  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

@ -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;

2
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;

2
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;

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