Browse Source

DEC-17954 fix: vertical_adapt在IE8及以上用inline_center_adapt

es6
zsmj1994 3 years ago
parent
commit
38f05479e9
  1. 2
      src/core/platform/web/config.js

2
src/core/platform/web/config.js

@ -69,7 +69,7 @@ BI.prepares.push(function () {
return BI.extend({}, ob, {type: "bi.flex_center_adapt"});
// }
}
if (!BI.isIE() || BI.getIEVersion() > 8) {
if (!BI.isIE() || BI.getIEVersion() >= 8) {
return BI.extend({}, ob, {type: "bi.inline_center_adapt"});
}
}

Loading…
Cancel
Save