Browse Source

Pull request #1472: BI-72047 fix: 变量名错了

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

* commit '2bfaf85ba9957a565befd19d180ffa85d64e720c':
  BI-72047 fix: 变量名错了
es6
guy 4 years ago
parent
commit
b4b498bbb4
  1. 2
      src/core/platform/web/config.js

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

@ -23,7 +23,7 @@ BI.prepares.push(function () {
if (ob.horizontalAlign === BI.HorizontalAlign.Center || ob.horizontalAlign === BI.HorizontalAlign.Stretch) { if (ob.horizontalAlign === BI.HorizontalAlign.Center || ob.horizontalAlign === BI.HorizontalAlign.Stretch) {
return BI.extend(ob, {type: "bi.table_adapt"}); return BI.extend(ob, {type: "bi.table_adapt"});
} }
if (!IE && supportFlex) { if (!isIE && supportFlex) {
return BI.extend(ob, {type: "bi.flex_horizontal"}); return BI.extend(ob, {type: "bi.flex_horizontal"});
} }
// 解决使用inline_vertical_adapt的顺序问题 // 解决使用inline_vertical_adapt的顺序问题

Loading…
Cancel
Save