Browse Source

布局大一统

es6
guy 4 years ago
parent
commit
683dbd435b
  1. 4
      src/base/single/label/abstract.label.js

4
src/base/single/label/abstract.label.js

@ -83,7 +83,7 @@
}); });
return; return;
} }
if (o.whiteSpace == "normal") { // 1.3 if (o.whiteSpace === "normal") { // 1.3
BI.extend(json, { BI.extend(json, {
hgap: o.hgap, hgap: o.hgap,
vgap: o.vgap, vgap: o.vgap,
@ -152,7 +152,7 @@
}); });
return; return;
} }
if (o.whiteSpace == "normal") { // 1.7 if (o.whiteSpace === "normal") { // 1.7
BI.extend(json, { BI.extend(json, {
hgap: o.hgap, hgap: o.hgap,
vgap: o.vgap, vgap: o.vgap,

Loading…
Cancel
Save