1234567891011121314 |
-
- Namespace.register("U.LO");
- U.LO.Flowlayout = function (NR, W, M) {
- var _a = NR.clientWidth, i;
- var _num = Math.floor(_a / (W + 2 * M));
-
- for (i = 0; i < _num; i++) {
- $$("div", { "style": { "cssText": "float:left", "width": W + "px", "margin": M + "px"} }, NR);
- }
- return _num;
- }
|