Browse Source

update 去掉pane中无效方法

es6
Young 6 years ago
parent
commit
a12831de05
  1. 14
      dist/base.js
  2. 14
      dist/bundle.ie.js
  3. 14
      dist/bundle.js
  4. 14
      dist/fineui.ie.js
  5. 14
      dist/fineui.js
  6. 14
      dist/fineui_without_jquery_polyfill.js
  7. 14
      src/base/pane.js

14
dist/base.js vendored

@ -218,20 +218,6 @@ BI.Pane = BI.inherit(BI.Widget, {
});
},
_init: function () {
BI.Pane.superclass._init.apply(this, arguments);
if (this.__async) {
this.loading();
}
},
_render: function () {
BI.Pane.superclass._render.apply(this, arguments);
if (this.__async) {
this.loaded();
}
},
_assertTip: function () {
var o = this.options;
if (!this._tipText) {

14
dist/bundle.ie.js vendored

@ -35304,20 +35304,6 @@ BI.Pane = BI.inherit(BI.Widget, {
});
},
_init: function () {
BI.Pane.superclass._init.apply(this, arguments);
if (this.__async) {
this.loading();
}
},
_render: function () {
BI.Pane.superclass._render.apply(this, arguments);
if (this.__async) {
this.loaded();
}
},
_assertTip: function () {
var o = this.options;
if (!this._tipText) {

14
dist/bundle.js vendored

@ -35708,20 +35708,6 @@ BI.Pane = BI.inherit(BI.Widget, {
});
},
_init: function () {
BI.Pane.superclass._init.apply(this, arguments);
if (this.__async) {
this.loading();
}
},
_render: function () {
BI.Pane.superclass._render.apply(this, arguments);
if (this.__async) {
this.loaded();
}
},
_assertTip: function () {
var o = this.options;
if (!this._tipText) {

14
dist/fineui.ie.js vendored

@ -35549,20 +35549,6 @@ BI.Pane = BI.inherit(BI.Widget, {
});
},
_init: function () {
BI.Pane.superclass._init.apply(this, arguments);
if (this.__async) {
this.loading();
}
},
_render: function () {
BI.Pane.superclass._render.apply(this, arguments);
if (this.__async) {
this.loaded();
}
},
_assertTip: function () {
var o = this.options;
if (!this._tipText) {

14
dist/fineui.js vendored

@ -35953,20 +35953,6 @@ BI.Pane = BI.inherit(BI.Widget, {
});
},
_init: function () {
BI.Pane.superclass._init.apply(this, arguments);
if (this.__async) {
this.loading();
}
},
_render: function () {
BI.Pane.superclass._render.apply(this, arguments);
if (this.__async) {
this.loaded();
}
},
_assertTip: function () {
var o = this.options;
if (!this._tipText) {

14
dist/fineui_without_jquery_polyfill.js vendored

@ -24460,20 +24460,6 @@ BI.Pane = BI.inherit(BI.Widget, {
});
},
_init: function () {
BI.Pane.superclass._init.apply(this, arguments);
if (this.__async) {
this.loading();
}
},
_render: function () {
BI.Pane.superclass._render.apply(this, arguments);
if (this.__async) {
this.loaded();
}
},
_assertTip: function () {
var o = this.options;
if (!this._tipText) {

14
src/base/pane.js

@ -17,20 +17,6 @@ BI.Pane = BI.inherit(BI.Widget, {
});
},
_init: function () {
BI.Pane.superclass._init.apply(this, arguments);
if (this.__async) {
this.loading();
}
},
_render: function () {
BI.Pane.superclass._render.apply(this, arguments);
if (this.__async) {
this.loaded();
}
},
_assertTip: function () {
var o = this.options;
if (!this._tipText) {

Loading…
Cancel
Save