From 43d38065d30e59c7dff4a75c423e1e63e8465903 Mon Sep 17 00:00:00 2001 From: windy <1374721899@qq.com> Date: Wed, 13 Jan 2021 12:02:14 +0800 Subject: [PATCH] =?UTF-8?q?BI-80166=20fix:=20IE9=E5=85=BC=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/core/platform/web/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/platform/web/config.js b/src/core/platform/web/config.js index 0684e076f..207ae483a 100644 --- a/src/core/platform/web/config.js +++ b/src/core/platform/web/config.js @@ -124,7 +124,7 @@ BI.prepares.push(function () { }); BI.Plugin.configWidget("bi.checkbox", function (ob) { - if (BI.isIE() && BI.getIEVersion() < 9) { + if (BI.isIE() && BI.getIEVersion() <= 9) { return BI.extend(ob, {type: "bi.image_checkbox"}); } return ob;