Browse Source

无JIRA combo popup支持函数

es6
zsmj 3 years ago
parent
commit
28d60ac8a0
  1. 2
      src/base/combination/bubble.js
  2. 2
      src/base/combination/combo.js

2
src/base/combination/bubble.js

@ -228,7 +228,7 @@
_assertPopupView: function () {
var self = this, o = this.options;
if (this.popupView == null) {
this.popupView = BI.createWidget(this.options.popup, {
this.popupView = BI.createWidget(BI.isFunction(this.options.popup) ? this.options.popup() : this.options.popup, {
type: "bi.bubble_popup_view",
showArrow: o.showArrow,
value: o.value

2
src/base/combination/combo.js

@ -103,7 +103,7 @@
_assertPopupView: function () {
var self = this, o = this.options;
if (this.popupView == null) {
this.popupView = BI.createWidget(this.options.popup, {
this.popupView = BI.createWidget(BI.isFunction(this.options.popup) ? this.options.popup() : this.options.popup, {
type: "bi.popup_view",
showArrow: o.showArrow,
value: o.value

Loading…
Cancel
Save