windy 6 years ago
parent
commit
3e24fcd9a6
  1. 2
      dist/_fineui.min.js
  2. 5
      dist/base.js
  3. 5
      dist/bundle.js
  4. 2
      dist/bundle.min.js
  5. 5
      dist/fineui.js
  6. 2
      dist/fineui.min.js
  7. 5
      src/base/combination/combo.js

2
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

5
dist/base.js vendored

@ -3020,7 +3020,10 @@ BI.Combo = BI.inherit(BI.Widget, {
trigger: "click",
toggle: true,
direction: "bottom", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right
container: null, // popupview放置的容器,默认为this.element
// 之所以默认为body,是因为
// 1、页面上如果有transform,那么fixed的表现行为就是absolute
// 2、另外在IE下,也会有位置偏移的问题
container: "body", // popupview放置的容器,默认为body
isDefaultInit: false,
destroyWhenHide: false,
isNeedAdjustHeight: true, // 是否需要高度调整

5
dist/bundle.js vendored

@ -38935,7 +38935,10 @@ BI.Combo = BI.inherit(BI.Widget, {
trigger: "click",
toggle: true,
direction: "bottom", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right
container: null, // popupview放置的容器,默认为this.element
// 之所以默认为body,是因为
// 1、页面上如果有transform,那么fixed的表现行为就是absolute
// 2、另外在IE下,也会有位置偏移的问题
container: "body", // popupview放置的容器,默认为body
isDefaultInit: false,
destroyWhenHide: false,
isNeedAdjustHeight: true, // 是否需要高度调整

2
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

5
dist/fineui.js vendored

@ -39184,7 +39184,10 @@ BI.Combo = BI.inherit(BI.Widget, {
trigger: "click",
toggle: true,
direction: "bottom", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right
container: null, // popupview放置的容器,默认为this.element
// 之所以默认为body,是因为
// 1、页面上如果有transform,那么fixed的表现行为就是absolute
// 2、另外在IE下,也会有位置偏移的问题
container: "body", // popupview放置的容器,默认为body
isDefaultInit: false,
destroyWhenHide: false,
isNeedAdjustHeight: true, // 是否需要高度调整

2
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

5
src/base/combination/combo.js

@ -10,7 +10,10 @@ BI.Combo = BI.inherit(BI.Widget, {
trigger: "click",
toggle: true,
direction: "bottom", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right
container: null, // popupview放置的容器,默认为this.element
// 之所以默认为body,是因为
// 1、页面上如果有transform,那么fixed的表现行为就是absolute
// 2、另外在IE下,也会有位置偏移的问题
container: "body", // popupview放置的容器,默认为body
isDefaultInit: false,
destroyWhenHide: false,
isNeedAdjustHeight: true, // 是否需要高度调整

Loading…
Cancel
Save