Browse Source

整理代码

es6
guy 3 years ago
parent
commit
36edb243d8
  1. 16
      src/base/el.js

16
src/base/el.js

@ -9,18 +9,14 @@ BI.EL = BI.inherit(BI.Widget, {
_defaultConfig: function () {
return BI.extend(BI.EL.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-el",
el: {},
layout: {}
el: {}
});
},
_init: function () {
BI.EL.superclass._init.apply(this, arguments);
render: function () {
var self = this, o = this.options;
this.ele = BI.createWidget(o.el);
BI.createWidget(o.layout, {
type: "bi.adaptive",
element: this,
items: [this.ele]
this.ele = BI.createWidget(o.el, {
element: this
});
this.ele.on(BI.Controller.EVENT_CHANGE, function () {
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments);
@ -39,4 +35,4 @@ BI.EL = BI.inherit(BI.Widget, {
this.ele.populate.apply(this, arguments);
}
});
BI.shortcut("bi.el", BI.EL);
BI.shortcut("bi.el", BI.EL);

Loading…
Cancel
Save