Browse Source

Pull request #1861: DEC-17954 fix: vertical_adapt在IE8及以上用inline_center_adapt

Merge in VISUAL/fineui from ~DAILER/fineui:master to master

* commit '38f05479e9fc5ce2d40147ae8dbb079d50b008e9':
  DEC-17954 fix: vertical_adapt在IE8及以上用inline_center_adapt
es6
parent
commit
a89c892c4f
  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