guy 7 years ago
parent
commit
561e96ec08
  1. 4
      dist/bundle.js
  2. 2
      dist/bundle.min.js
  3. 4
      dist/core.js
  4. 4
      dist/fineui.js
  5. 2
      dist/fineui.min.js
  6. 4
      src/core/controller/controller.layer.js

4
dist/bundle.js vendored

@ -26573,14 +26573,14 @@ BI.LayerController = BI.inherit(BI.Controller, {
});
},
make: function (name, container, op) {
make: function (name, container, op, context) {
if (BI.isWidget(container)) {
op = op || {};
op.container = container;
} else {
op = container;
}
return this.create(name, null, op);
return this.create(name, null, op, context);
},
create: function (name, from, op, context) {

2
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/core.js vendored

@ -26573,14 +26573,14 @@ BI.LayerController = BI.inherit(BI.Controller, {
});
},
make: function (name, container, op) {
make: function (name, container, op, context) {
if (BI.isWidget(container)) {
op = op || {};
op.container = container;
} else {
op = container;
}
return this.create(name, null, op);
return this.create(name, null, op, context);
},
create: function (name, from, op, context) {

4
dist/fineui.js vendored

@ -26816,14 +26816,14 @@ BI.LayerController = BI.inherit(BI.Controller, {
});
},
make: function (name, container, op) {
make: function (name, container, op, context) {
if (BI.isWidget(container)) {
op = op || {};
op.container = container;
} else {
op = container;
}
return this.create(name, null, op);
return this.create(name, null, op, context);
},
create: function (name, from, op, context) {

2
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

4
src/core/controller/controller.layer.js

@ -27,14 +27,14 @@ BI.LayerController = BI.inherit(BI.Controller, {
});
},
make: function (name, container, op) {
make: function (name, container, op, context) {
if (BI.isWidget(container)) {
op = op || {};
op.container = container;
} else {
op = container;
}
return this.create(name, null, op);
return this.create(name, null, op, context);
},
create: function (name, from, op, context) {

Loading…
Cancel
Save