diff --git a/src/core/platform/web/config.js b/src/core/platform/web/config.js index 0684e076f..d214368c5 100644 --- a/src/core/platform/web/config.js +++ b/src/core/platform/web/config.js @@ -117,14 +117,14 @@ BI.prepares.push(function () { }); BI.Plugin.configWidget("bi.radio", function (ob) { - if (BI.isIE() && BI.getIEVersion() < 9) { + if (BI.isIE() && BI.getIEVersion() <= 9) { return BI.extend(ob, {type: "bi.image_radio"}); } return ob; }); 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;