guy 7 years ago
parent
commit
be4013545c
  1. 10
      dist/bundle.js
  2. 2
      dist/bundle.min.js
  3. 10
      dist/core.js
  4. 10
      dist/fineui.js
  5. 2
      dist/fineui.min.js
  6. 10
      src/core/widget.js

10
dist/bundle.js vendored

@ -12504,13 +12504,13 @@ BI.Widget = BI.inherit(BI.OB, {
_init: function () {
BI.Widget.superclass._init.apply(this, arguments);
this._initRoot();
this._initElementWidth();
this._initElementHeight();
this._initVisual();
this._initState();
var func = function () {
this.beforeCreate && this.beforeCreate();
this._initRoot();
this._initElementWidth();
this._initElementHeight();
this._initVisual();
this._initState();
this._initElement();
this._initEffects();
this.created && this.created();

2
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

10
dist/core.js vendored

@ -12504,13 +12504,13 @@ BI.Widget = BI.inherit(BI.OB, {
_init: function () {
BI.Widget.superclass._init.apply(this, arguments);
this._initRoot();
this._initElementWidth();
this._initElementHeight();
this._initVisual();
this._initState();
var func = function () {
this.beforeCreate && this.beforeCreate();
this._initRoot();
this._initElementWidth();
this._initElementHeight();
this._initVisual();
this._initState();
this._initElement();
this._initEffects();
this.created && this.created();

10
dist/fineui.js vendored

@ -12677,13 +12677,13 @@ BI.Widget = BI.inherit(BI.OB, {
_init: function () {
BI.Widget.superclass._init.apply(this, arguments);
this._initRoot();
this._initElementWidth();
this._initElementHeight();
this._initVisual();
this._initState();
var func = function () {
this.beforeCreate && this.beforeCreate();
this._initRoot();
this._initElementWidth();
this._initElementHeight();
this._initVisual();
this._initState();
this._initElement();
this._initEffects();
this.created && this.created();

2
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

10
src/core/widget.js

@ -47,13 +47,13 @@ BI.Widget = BI.inherit(BI.OB, {
_init: function () {
BI.Widget.superclass._init.apply(this, arguments);
this._initRoot();
this._initElementWidth();
this._initElementHeight();
this._initVisual();
this._initState();
var func = function () {
this.beforeCreate && this.beforeCreate();
this._initRoot();
this._initElementWidth();
this._initElementHeight();
this._initVisual();
this._initState();
this._initElement();
this._initEffects();
this.created && this.created();

Loading…
Cancel
Save