Browse Source

Pull request #1463: 无JIRA任务 整理一下

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

* commit 'd5a57193ce769727b3f1a09f73ce1b79dfcd80b2':
  bugfix
es6
guy 4 years ago
parent
commit
6280b26dba
  1. 2
      src/core/wrapper/layout/adapt/adapt.table.js

2
src/core/wrapper/layout/adapt/adapt.table.js

@ -25,7 +25,7 @@ BI.TableAdaptLayout = BI.inherit(BI.Layout, {
this.$table = BI.Widget._renderEngine.createElement("<div>").css({
position: "relative",
display: "table",
width: (o.horizontalAlign === BI.HorizontalAlign.Center || BI.HorizontalAlign.Stretch) ? "100%" : "auto",
width: (o.horizontalAlign === BI.HorizontalAlign.Center || o.horizontalAlign === BI.HorizontalAlign.Stretch) ? "100%" : "auto",
height: (o.verticalAlign === BI.VerticalAlign.Middle || o.verticalAlign === BI.VerticalAlign.Stretch) ? "100%" : "auto",
"white-space": "nowrap"
});

Loading…
Cancel
Save