guy 6 years ago
parent
commit
ec430868d3
  1. 2
      dist/bundle.js
  2. 2
      dist/bundle.min.js
  3. 2
      dist/core.js
  4. 2
      dist/fineui.js
  5. 2
      dist/fineui.min.js
  6. 2
      src/core/controller/controller.floatbox.js

2
dist/bundle.js vendored

@ -26638,7 +26638,7 @@ BI.FloatBoxController = BI.inherit(BI.Controller, {
this.get(name).setZindex(this.zindex++);
this.floatContainer[name].visible();
var floatbox = this.get(name);
floatbox.show();
floatbox.show && floatbox.show();
var W = $(this.options.render).width(), H = $(this.options.render).height();
var w = floatbox.element.width(), h = floatbox.element.height();
var left = (W - w) / 2, top = (H - h) / 2;

2
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/core.js vendored

@ -26638,7 +26638,7 @@ BI.FloatBoxController = BI.inherit(BI.Controller, {
this.get(name).setZindex(this.zindex++);
this.floatContainer[name].visible();
var floatbox = this.get(name);
floatbox.show();
floatbox.show && floatbox.show();
var W = $(this.options.render).width(), H = $(this.options.render).height();
var w = floatbox.element.width(), h = floatbox.element.height();
var left = (W - w) / 2, top = (H - h) / 2;

2
dist/fineui.js vendored

@ -26881,7 +26881,7 @@ BI.FloatBoxController = BI.inherit(BI.Controller, {
this.get(name).setZindex(this.zindex++);
this.floatContainer[name].visible();
var floatbox = this.get(name);
floatbox.show();
floatbox.show && floatbox.show();
var W = $(this.options.render).width(), H = $(this.options.render).height();
var w = floatbox.element.width(), h = floatbox.element.height();
var left = (W - w) / 2, top = (H - h) / 2;

2
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
src/core/controller/controller.floatbox.js

@ -92,7 +92,7 @@ BI.FloatBoxController = BI.inherit(BI.Controller, {
this.get(name).setZindex(this.zindex++);
this.floatContainer[name].visible();
var floatbox = this.get(name);
floatbox.show();
floatbox.show && floatbox.show();
var W = $(this.options.render).width(), H = $(this.options.render).height();
var w = floatbox.element.width(), h = floatbox.element.height();
var left = (W - w) / 2, top = (H - h) / 2;

Loading…
Cancel
Save