Browse Source

Pull request #1772: DEC-17238 fix: 修复BI.PopupView maxWidth属性为"auto"或null的场景

Merge in VISUAL/fineui from ~DAILER/fineui:master to master

* commit '8cddc41ad307f81639f78ec6ece8a0a1d1c8de6f':
  DEC-17238 fix: 修复BI.PopupView  maxWidth属性为"auto"或null的场景
es6
parent
commit
ea22ca5537
  1. 6
      src/base/layer/layer.popup.js

6
src/base/layer/layer.popup.js

@ -52,8 +52,8 @@ BI.PopupView = BI.inherit(BI.Widget, {
};
this.element.css({
"z-index": BI.zIndex_popup,
"min-width": o.minWidth / BI.pixRatio + BI.pixUnit,
"max-width": o.maxWidth / BI.pixRatio + BI.pixUnit
"min-width": BI.isNumeric(o.minWidth) ? (o.minWidth / BI.pixRatio + BI.pixUnit) : o.minWidth,
"max-width": BI.isNumeric(o.maxWidth) ? (o.maxWidth / BI.pixRatio + BI.pixUnit) : o.maxWidth
}).bind({ click: fn });
this.element.bind("mousewheel", fn);
@ -96,7 +96,7 @@ BI.PopupView = BI.inherit(BI.Widget, {
var o = this.options;
this.button_group = BI.createWidget(o.el, { type: "bi.button_group", value: o.value });
this.button_group.element.css({
"min-height": o.minHeight / BI.pixRatio + BI.pixUnit,
"min-height": BI.isNumeric(o.minHeight) ? (o.minHeight / BI.pixRatio + BI.pixUnit) : o.minHeight,
"padding-top": o.innerVGap / BI.pixRatio + BI.pixUnit,
"padding-bottom": o.innerVGap / BI.pixRatio + BI.pixUnit
});

Loading…
Cancel
Save