From 4924f09d15d06c90198428de8bfaddb5fae4a2a4 Mon Sep 17 00:00:00 2001 From: guy Date: Thu, 24 Feb 2022 21:35:58 +0800 Subject: [PATCH] =?UTF-8?q?chore=EF=BC=9A=20=E4=BC=98=E5=8C=96=E4=B8=80?= =?UTF-8?q?=E4=B8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/case/combo/bubblecombo/popup.bubble.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/case/combo/bubblecombo/popup.bubble.js b/src/case/combo/bubblecombo/popup.bubble.js index cbd4479cd..d41767996 100644 --- a/src/case/combo/bubblecombo/popup.bubble.js +++ b/src/case/combo/bubblecombo/popup.bubble.js @@ -106,11 +106,12 @@ BI.shortcut("bi.bubble_bar_popup_view", BI.BubblePopupBarView); */ BI.TextBubblePopupBarView = BI.inherit(BI.BubblePopupBarView, { - props: function () { - return { - baseCls: "bi-text-bubble-bar-popup-view", + _defaultConfig: function () { + var config = BI.TextBubblePopupBarView.superclass._defaultConfig.apply(this, arguments); + return BI.extend(config, { + baseCls: config.baseCls + " bi-text-bubble-bar-popup-view", text: "", - }; + }); }, _createContent: function () {