guy 7 years ago
parent
commit
28d9d4fa28
  1. 12
      dist/bundle.js
  2. 2
      dist/bundle.min.js
  3. 12
      dist/core.js
  4. 12
      dist/fineui.js
  5. 2
      dist/fineui.min.js
  6. 10
      src/core/controller/controller.floatbox.js
  7. 2
      src/core/controller/controller.layer.js

12
dist/bundle.js vendored

@ -18449,19 +18449,19 @@ BI.FloatBoxController = BI.inherit(BI.Controller, {
return BI.isNotNull(this.floatManager[name]); return BI.isNotNull(this.floatManager[name]);
}, },
create: function (name, section, options) { create: function (name, section, options, context) {
if (this._check(name)) { if (this._check(name)) {
return this; return this;
} }
var floatbox = BI.createWidget({ var floatbox = BI.createWidget({
type: "bi.float_box" type: "bi.float_box"
}, options); }, options, context);
floatbox.populate(section); floatbox.populate(section);
this.add(name, floatbox, options); this.add(name, floatbox, options, context);
return this; return this;
}, },
add: function (name, floatbox, options) { add: function (name, floatbox, options, context) {
var self = this; var self = this;
options || (options = {}); options || (options = {});
if (this._check(name)) { if (this._check(name)) {
@ -18474,7 +18474,7 @@ BI.FloatBoxController = BI.inherit(BI.Controller, {
el: (this.floatLayer[name] = BI.createWidget({ el: (this.floatLayer[name] = BI.createWidget({
type: "bi.absolute", type: "bi.absolute",
items: [floatbox] items: [floatbox]
})), }, context)),
left: 0, left: 0,
right: 0, right: 0,
top: 0, top: 0,
@ -18630,7 +18630,7 @@ BI.LayerController = BI.inherit(BI.Controller, {
top: 0, top: 0,
bottom: 0 bottom: 0
}] }]
}); }, context);
BI.createWidget({ BI.createWidget({
type: "bi.absolute", type: "bi.absolute",
element: op.container || this.options.render, element: op.container || this.options.render,

2
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

12
dist/core.js vendored

@ -18449,19 +18449,19 @@ BI.FloatBoxController = BI.inherit(BI.Controller, {
return BI.isNotNull(this.floatManager[name]); return BI.isNotNull(this.floatManager[name]);
}, },
create: function (name, section, options) { create: function (name, section, options, context) {
if (this._check(name)) { if (this._check(name)) {
return this; return this;
} }
var floatbox = BI.createWidget({ var floatbox = BI.createWidget({
type: "bi.float_box" type: "bi.float_box"
}, options); }, options, context);
floatbox.populate(section); floatbox.populate(section);
this.add(name, floatbox, options); this.add(name, floatbox, options, context);
return this; return this;
}, },
add: function (name, floatbox, options) { add: function (name, floatbox, options, context) {
var self = this; var self = this;
options || (options = {}); options || (options = {});
if (this._check(name)) { if (this._check(name)) {
@ -18474,7 +18474,7 @@ BI.FloatBoxController = BI.inherit(BI.Controller, {
el: (this.floatLayer[name] = BI.createWidget({ el: (this.floatLayer[name] = BI.createWidget({
type: "bi.absolute", type: "bi.absolute",
items: [floatbox] items: [floatbox]
})), }, context)),
left: 0, left: 0,
right: 0, right: 0,
top: 0, top: 0,
@ -18630,7 +18630,7 @@ BI.LayerController = BI.inherit(BI.Controller, {
top: 0, top: 0,
bottom: 0 bottom: 0
}] }]
}); }, context);
BI.createWidget({ BI.createWidget({
type: "bi.absolute", type: "bi.absolute",
element: op.container || this.options.render, element: op.container || this.options.render,

12
dist/fineui.js vendored

@ -18622,19 +18622,19 @@ BI.FloatBoxController = BI.inherit(BI.Controller, {
return BI.isNotNull(this.floatManager[name]); return BI.isNotNull(this.floatManager[name]);
}, },
create: function (name, section, options) { create: function (name, section, options, context) {
if (this._check(name)) { if (this._check(name)) {
return this; return this;
} }
var floatbox = BI.createWidget({ var floatbox = BI.createWidget({
type: "bi.float_box" type: "bi.float_box"
}, options); }, options, context);
floatbox.populate(section); floatbox.populate(section);
this.add(name, floatbox, options); this.add(name, floatbox, options, context);
return this; return this;
}, },
add: function (name, floatbox, options) { add: function (name, floatbox, options, context) {
var self = this; var self = this;
options || (options = {}); options || (options = {});
if (this._check(name)) { if (this._check(name)) {
@ -18647,7 +18647,7 @@ BI.FloatBoxController = BI.inherit(BI.Controller, {
el: (this.floatLayer[name] = BI.createWidget({ el: (this.floatLayer[name] = BI.createWidget({
type: "bi.absolute", type: "bi.absolute",
items: [floatbox] items: [floatbox]
})), }, context)),
left: 0, left: 0,
right: 0, right: 0,
top: 0, top: 0,
@ -18803,7 +18803,7 @@ BI.LayerController = BI.inherit(BI.Controller, {
top: 0, top: 0,
bottom: 0 bottom: 0
}] }]
}); }, context);
BI.createWidget({ BI.createWidget({
type: "bi.absolute", type: "bi.absolute",
element: op.container || this.options.render, element: op.container || this.options.render,

2
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

10
src/core/controller/controller.floatbox.js

@ -27,19 +27,19 @@ BI.FloatBoxController = BI.inherit(BI.Controller, {
return BI.isNotNull(this.floatManager[name]); return BI.isNotNull(this.floatManager[name]);
}, },
create: function (name, section, options) { create: function (name, section, options, context) {
if (this._check(name)) { if (this._check(name)) {
return this; return this;
} }
var floatbox = BI.createWidget({ var floatbox = BI.createWidget({
type: "bi.float_box" type: "bi.float_box"
}, options); }, options, context);
floatbox.populate(section); floatbox.populate(section);
this.add(name, floatbox, options); this.add(name, floatbox, options, context);
return this; return this;
}, },
add: function (name, floatbox, options) { add: function (name, floatbox, options, context) {
var self = this; var self = this;
options || (options = {}); options || (options = {});
if (this._check(name)) { if (this._check(name)) {
@ -52,7 +52,7 @@ BI.FloatBoxController = BI.inherit(BI.Controller, {
el: (this.floatLayer[name] = BI.createWidget({ el: (this.floatLayer[name] = BI.createWidget({
type: "bi.absolute", type: "bi.absolute",
items: [floatbox] items: [floatbox]
})), }, context)),
left: 0, left: 0,
right: 0, right: 0,
top: 0, top: 0,

2
src/core/controller/controller.layer.js

@ -66,7 +66,7 @@ BI.LayerController = BI.inherit(BI.Controller, {
top: 0, top: 0,
bottom: 0 bottom: 0
}] }]
}); }, context);
BI.createWidget({ BI.createWidget({
type: "bi.absolute", type: "bi.absolute",
element: op.container || this.options.render, element: op.container || this.options.render,

Loading…
Cancel
Save