windy 5 years ago
parent
commit
6af640df7e
  1. 3
      src/core/wrapper/layout/flex/flex.horizontal.center.js
  2. 3
      src/core/wrapper/layout/flex/flex.vertical.center.js
  3. 3
      src/core/wrapper/layout/flex/wrapper/flex.wrapper.horizontal.center.js
  4. 3
      src/core/wrapper/layout/flex/wrapper/flex.wrapper.vertical.center.js

3
src/core/wrapper/layout/flex/flex.horizontal.center.js

@ -33,6 +33,9 @@ BI.FlexHorizontalCenter = BI.inherit(BI.Layout, {
scrolly: o.scrolly,
scrollable: o.scrollable,
hgap: o.hgap,
vgap: o.vgap,
tgap: o.tgap,
bgap: o.bgap,
items: o.items
};
},

3
src/core/wrapper/layout/flex/flex.vertical.center.js

@ -34,6 +34,9 @@ BI.FlexVerticalCenter = BI.inherit(BI.Layout, {
scrolly: o.scrolly,
scrollable: o.scrollable,
vgap: o.vgap,
lgap: o.lgap,
rgap: o.rgap,
hgap: o.hgap,
items: o.items
};
},

3
src/core/wrapper/layout/flex/wrapper/flex.wrapper.horizontal.center.js

@ -35,6 +35,9 @@ BI.FlexWrapperHorizontalCenter = BI.inherit(BI.Layout, {
scrolly: o.scrolly,
scrollable: o.scrollable,
hgap: o.hgap,
vgap: o.vgap,
tgap: o.tgap,
bgap: o.bgap,
items: o.items
};
},

3
src/core/wrapper/layout/flex/wrapper/flex.wrapper.vertical.center.js

@ -34,7 +34,10 @@ BI.FlexWrapperVerticalCenter = BI.inherit(BI.Layout, {
scrollx: o.scrollx,
scrolly: o.scrolly,
scrollable: o.scrollable,
hgap: o.hgap,
vgap: o.vgap,
lgap: o.lgap,
rgap: o.rgap,
items: o.items
};
},

Loading…
Cancel
Save