Browse Source

Merge branch 'master' of ssh://code.fineres.com:7999/~dailer/fineui

es6
dailer 3 years ago
parent
commit
8c577e009a
  1. 8
      src/core/wrapper/layout/fill/float.fill.horizontal.js

8
src/core/wrapper/layout/fill/float.fill.horizontal.js

@ -43,7 +43,7 @@ BI.FloatHorizontalFillLayout = BI.inherit(BI.Layout, {
w.element.addClass("h-float-fill-item"); w.element.addClass("h-float-fill-item");
w.element.css({ w.element.css({
float: "left", float: "left",
position: "relative", position: "relative"
}); });
}); });
BI.backAny(items, function (i, item) { BI.backAny(items, function (i, item) {
@ -59,7 +59,7 @@ BI.FloatHorizontalFillLayout = BI.inherit(BI.Layout, {
w.element.addClass("h-float-fill-item"); w.element.addClass("h-float-fill-item");
w.element.css({ w.element.css({
float: "right", float: "right",
position: "relative", position: "relative"
}); });
}); });
BI.each(items, function (i, item) { BI.each(items, function (i, item) {
@ -68,7 +68,7 @@ BI.FloatHorizontalFillLayout = BI.inherit(BI.Layout, {
var w = BI._lazyCreateWidget(item); var w = BI._lazyCreateWidget(item);
self.addWidget(self._getChildName(rank++), w); self.addWidget(self._getChildName(rank++), w);
w.element.addClass("h-float-fill-item").css({ w.element.addClass("h-float-fill-item").css({
position: "relative", position: "relative"
}); });
} }
}); });
@ -79,4 +79,4 @@ BI.FloatHorizontalFillLayout = BI.inherit(BI.Layout, {
this._mount(); this._mount();
} }
}); });
BI.shortcut("bi.horizontal_float_fill", BI.FloatHorizontalFillLayout); BI.shortcut("bi.horizontal_float_fill", BI.FloatHorizontalFillLayout);

Loading…
Cancel
Save