From d4751a6218838034446e972032992388562762c0 Mon Sep 17 00:00:00 2001 From: windy <1374721899@qq.com> Date: Wed, 16 Sep 2020 09:40:22 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=97=A0JIRA=E4=BB=BB=E5=8A=A1=20hack?= =?UTF-8?q?=E6=94=BEcombo=E8=80=8C=E9=9D=9E=E5=85=B7=E4=BD=93combo?= =?UTF-8?q?=E5=A4=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/base/combination/combo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/combination/combo.js b/src/base/combination/combo.js index 6c3ee9751..62dde79f8 100644 --- a/src/base/combination/combo.js +++ b/src/base/combination/combo.js @@ -8,7 +8,7 @@ _defaultConfig: function () { var conf = BI.Combo.superclass._defaultConfig.apply(this, arguments); return BI.extend(conf, { - baseCls: (conf.baseCls || "") + " bi-combo", + baseCls: (conf.baseCls || "") + " bi-combo" + (BI.isIE() ? " hack" : ""), trigger: "click", toggle: true, direction: "bottom", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right||right,innerRight||right,innerLeft||innerRight||innerLeft From e36b4edb3e0f1a7acd9efa4dea45081c08cba6db Mon Sep 17 00:00:00 2001 From: windy <1374721899@qq.com> Date: Wed, 16 Sep 2020 09:40:45 +0800 Subject: [PATCH 2/2] =?UTF-8?q?BI-73062=20=E5=88=A0downlistcombo=E5=A4=84?= =?UTF-8?q?=E7=9A=84hack?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/widget/downlist/combo.downlist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widget/downlist/combo.downlist.js b/src/widget/downlist/combo.downlist.js index a998064c7..24c87c336 100644 --- a/src/widget/downlist/combo.downlist.js +++ b/src/widget/downlist/combo.downlist.js @@ -4,7 +4,7 @@ BI.DownListCombo = BI.inherit(BI.Widget, { _defaultConfig: function () { return BI.extend(BI.DownListCombo.superclass._defaultConfig.apply(this, arguments), { - baseCls: "bi-down-list-combo" + (BI.isIE() ? " hack" : ""), + baseCls: "bi-down-list-combo", height: 24, items: [], adjustLength: 0,