From dc567a75c2d0273c1c484b920e1ec54036b89841 Mon Sep 17 00:00:00 2001 From: zsmj Date: Thu, 24 Mar 2022 11:52:31 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A0JIRA=20combo=20popup=E6=94=AF=E6=8C=81?= =?UTF-8?q?=E5=87=BD=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/case/combo/bubblecombo/combo.bubble.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/case/combo/bubblecombo/combo.bubble.js b/src/case/combo/bubblecombo/combo.bubble.js index 34447f307..3ef42987f 100644 --- a/src/case/combo/bubblecombo/combo.bubble.js +++ b/src/case/combo/bubblecombo/combo.bubble.js @@ -53,12 +53,12 @@ BI.BubbleCombo = BI.inherit(BI.Widget, { offsetStyle: o.offsetStyle, showArrow: true, el: o.el, - popup: BI.extend({ + popup: () => BI.extend({ type: "bi.bubble_popup_view", animation: "bi-zoom-big", animationDuring: 200, primary: o.primary - }, BI.isFunction(this.options.popup) ? this.options.popup() : this.options.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);