|
|
|
@ -26,7 +26,9 @@ BI.Switcher = BI.inherit(BI.Widget, {
|
|
|
|
|
var self = this, o = this.options; |
|
|
|
|
this._initSwitcher(); |
|
|
|
|
// 延迟绑定事件,这样可以将自己绑定的事情优先执行
|
|
|
|
|
BI.nextTick(this._initPullDownAction.bind(this)); |
|
|
|
|
BI.nextTick(() => { |
|
|
|
|
!this.isDestroyed() && this._initPullDownAction(); |
|
|
|
|
}); |
|
|
|
|
this.switcher.on(BI.Controller.EVENT_CHANGE, function (type, value, obj) { |
|
|
|
|
if (self.isEnabled() && self.isValid()) { |
|
|
|
|
if (type === BI.Events.EXPAND) { |
|
|
|
|