Browse Source

无JIRA combo popup支持函数

es6
zsmj 2 years ago
parent
commit
2ea2f392bc
  1. 2
      src/case/combo/bubblecombo/combo.bubble.js

2
src/case/combo/bubblecombo/combo.bubble.js

@ -58,7 +58,7 @@ BI.BubbleCombo = BI.inherit(BI.Widget, {
animation: "bi-zoom-big",
animationDuring: 200,
primary: o.primary
}, o.popup)
}, BI.isFunction(this.options.popup) ? this.options.popup() : this.options.popup)
});
this.combo.on(BI.Combo.EVENT_TRIGGER_CHANGE, function () {
self.fireEvent(BI.BubbleCombo.EVENT_TRIGGER_CHANGE, arguments);

Loading…
Cancel
Save