guy 7 years ago
parent
commit
cfb079aaf8
  1. 26
      dist/bundle.js
  2. 56
      dist/bundle.min.js
  3. 26
      dist/core.js
  4. 26
      dist/fineui.js
  5. 24
      dist/fineui.min.js
  6. 26
      src/core/controller/controller.layer.js

26
dist/bundle.js vendored

@ -18404,27 +18404,13 @@ BI.LayerController = BI.inherit(BI.Controller, {
},
make: function (name, container, op) {
if (this.has(name)) {
return this.get(name);
if (BI.isWidget(container)) {
op = op || {};
op.container = container;
} else {
op = container;
}
op || (op = {});
var widget = BI.createWidget((op.render || {}), {
type: "bi.layout"
});
BI.createWidget({
type: "bi.absolute",
element: container || this.options.render,
items: [BI.extend({
el: widget
}, {
top: 0,
left: 0,
right: 0,
bottom: 0
}, op.offset)]
});
this.add(name, widget, widget);
return widget;
return this.create(name, null, op);
},
create: function (name, from, op) {

56
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

26
dist/core.js vendored

@ -18404,27 +18404,13 @@ BI.LayerController = BI.inherit(BI.Controller, {
},
make: function (name, container, op) {
if (this.has(name)) {
return this.get(name);
if (BI.isWidget(container)) {
op = op || {};
op.container = container;
} else {
op = container;
}
op || (op = {});
var widget = BI.createWidget((op.render || {}), {
type: "bi.layout"
});
BI.createWidget({
type: "bi.absolute",
element: container || this.options.render,
items: [BI.extend({
el: widget
}, {
top: 0,
left: 0,
right: 0,
bottom: 0
}, op.offset)]
});
this.add(name, widget, widget);
return widget;
return this.create(name, null, op);
},
create: function (name, from, op) {

26
dist/fineui.js vendored

@ -18577,27 +18577,13 @@ BI.LayerController = BI.inherit(BI.Controller, {
},
make: function (name, container, op) {
if (this.has(name)) {
return this.get(name);
if (BI.isWidget(container)) {
op = op || {};
op.container = container;
} else {
op = container;
}
op || (op = {});
var widget = BI.createWidget((op.render || {}), {
type: "bi.layout"
});
BI.createWidget({
type: "bi.absolute",
element: container || this.options.render,
items: [BI.extend({
el: widget
}, {
top: 0,
left: 0,
right: 0,
bottom: 0
}, op.offset)]
});
this.add(name, widget, widget);
return widget;
return this.create(name, null, op);
},
create: function (name, from, op) {

24
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

26
src/core/controller/controller.layer.js

@ -28,27 +28,13 @@ BI.LayerController = BI.inherit(BI.Controller, {
},
make: function (name, container, op) {
if (this.has(name)) {
return this.get(name);
if (BI.isWidget(container)) {
op = op || {};
op.container = container;
} else {
op = container;
}
op || (op = {});
var widget = BI.createWidget((op.render || {}), {
type: "bi.layout"
});
BI.createWidget({
type: "bi.absolute",
element: container || this.options.render,
items: [BI.extend({
el: widget
}, {
top: 0,
left: 0,
right: 0,
bottom: 0
}, op.offset)]
});
this.add(name, widget, widget);
return widget;
return this.create(name, null, op);
},
create: function (name, from, op) {

Loading…
Cancel
Save