windy 6 years ago
parent
commit
ea11d75512
  1. 5
      dist/base.js
  2. 6
      dist/bundle.ie.js
  3. 4
      dist/bundle.ie.min.js
  4. 6
      dist/bundle.js
  5. 46
      dist/bundle.min.js
  6. 1
      dist/core.js
  7. 6
      dist/fineui.ie.js
  8. 4
      dist/fineui.ie.min.js
  9. 6
      dist/fineui.js
  10. 46
      dist/fineui.min.js
  11. 6
      dist/fineui_without_jquery_polyfill.js
  12. 2
      dist/utils.min.js
  13. 5
      src/base/layer/layer.popover.js

5
dist/base.js vendored

@ -5838,10 +5838,7 @@ BI.Popover = BI.inherit(BI.Widget, {
if (o.logic.dynamic) {
var height = this.element.height();
var compareHeight = BI.clamp(height, 200, 600) - (o.footer ? 84 : 44);
this.body.element.css({
"min-height": compareHeight,
"max-height": compareHeight
});
this.body.element.height(compareHeight);
}
},

6
dist/bundle.ie.js vendored

@ -31274,6 +31274,7 @@ BI.TableCenterAdaptLayout = BI.inherit(BI.Layout, {
},
_addElement: function (i, item) {
var o = this.options;
var td;
var width = o.columnSize[i] <= 1 ? (o.columnSize[i] * 100 + "%") : o.columnSize[i];
@ -40967,10 +40968,7 @@ BI.Popover = BI.inherit(BI.Widget, {
if (o.logic.dynamic) {
var height = this.element.height();
var compareHeight = BI.clamp(height, 200, 600) - (o.footer ? 84 : 44);
this.body.element.css({
"min-height": compareHeight,
"max-height": compareHeight
});
this.body.element.height(compareHeight);
}
},

4
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

6
dist/bundle.js vendored

@ -31274,6 +31274,7 @@ BI.TableCenterAdaptLayout = BI.inherit(BI.Layout, {
},
_addElement: function (i, item) {
var o = this.options;
var td;
var width = o.columnSize[i] <= 1 ? (o.columnSize[i] * 100 + "%") : o.columnSize[i];
@ -41371,10 +41372,7 @@ BI.Popover = BI.inherit(BI.Widget, {
if (o.logic.dynamic) {
var height = this.element.height();
var compareHeight = BI.clamp(height, 200, 600) - (o.footer ? 84 : 44);
this.body.element.css({
"min-height": compareHeight,
"max-height": compareHeight
});
this.body.element.height(compareHeight);
}
},

46
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

1
dist/core.js vendored

@ -31274,6 +31274,7 @@ BI.TableCenterAdaptLayout = BI.inherit(BI.Layout, {
},
_addElement: function (i, item) {
var o = this.options;
var td;
var width = o.columnSize[i] <= 1 ? (o.columnSize[i] * 100 + "%") : o.columnSize[i];

6
dist/fineui.ie.js vendored

@ -31516,6 +31516,7 @@ BI.TableCenterAdaptLayout = BI.inherit(BI.Layout, {
},
_addElement: function (i, item) {
var o = this.options;
var td;
var width = o.columnSize[i] <= 1 ? (o.columnSize[i] * 100 + "%") : o.columnSize[i];
@ -41209,10 +41210,7 @@ BI.Popover = BI.inherit(BI.Widget, {
if (o.logic.dynamic) {
var height = this.element.height();
var compareHeight = BI.clamp(height, 200, 600) - (o.footer ? 84 : 44);
this.body.element.css({
"min-height": compareHeight,
"max-height": compareHeight
});
this.body.element.height(compareHeight);
}
},

4
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

6
dist/fineui.js vendored

@ -31516,6 +31516,7 @@ BI.TableCenterAdaptLayout = BI.inherit(BI.Layout, {
},
_addElement: function (i, item) {
var o = this.options;
var td;
var width = o.columnSize[i] <= 1 ? (o.columnSize[i] * 100 + "%") : o.columnSize[i];
@ -41613,10 +41614,7 @@ BI.Popover = BI.inherit(BI.Widget, {
if (o.logic.dynamic) {
var height = this.element.height();
var compareHeight = BI.clamp(height, 200, 600) - (o.footer ? 84 : 44);
this.body.element.css({
"min-height": compareHeight,
"max-height": compareHeight
});
this.body.element.height(compareHeight);
}
},

46
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

6
dist/fineui_without_jquery_polyfill.js vendored

@ -20285,6 +20285,7 @@ BI.TableCenterAdaptLayout = BI.inherit(BI.Layout, {
},
_addElement: function (i, item) {
var o = this.options;
var td;
var width = o.columnSize[i] <= 1 ? (o.columnSize[i] * 100 + "%") : o.columnSize[i];
@ -29280,10 +29281,7 @@ BI.Popover = BI.inherit(BI.Widget, {
if (o.logic.dynamic) {
var height = this.element.height();
var compareHeight = BI.clamp(height, 200, 600) - (o.footer ? 84 : 44);
this.body.element.css({
"min-height": compareHeight,
"max-height": compareHeight
});
this.body.element.height(compareHeight);
}
},

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

5
src/base/layer/layer.popover.js

@ -149,10 +149,7 @@ BI.Popover = BI.inherit(BI.Widget, {
if (o.logic.dynamic) {
var height = this.element.height();
var compareHeight = BI.clamp(height, 200, 600) - (o.footer ? 84 : 44);
this.body.element.css({
"min-height": compareHeight,
"max-height": compareHeight
});
this.body.element.height(compareHeight);
}
},

Loading…
Cancel
Save