windy 6 years ago
parent
commit
2827c8a7f5
  1. 6
      dist/_fineui.min.js
  2. 12
      dist/base.js
  3. 14
      dist/bundle.js
  4. 6
      dist/bundle.min.js
  5. 14
      dist/fineui.js
  6. 6
      dist/fineui.min.js
  7. 2
      dist/widget.js
  8. 5
      src/base/combination/combo.js
  9. 7
      src/base/single/single.js
  10. 2
      src/widget/downlist/combo.downlist.js

6
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

12
dist/base.js vendored

@ -342,7 +342,9 @@ BI.Single = BI.inherit(BI.Widget, {
warningTitle: null,
tipType: null, // success或warning
value: null,
belowMouse: false // title是否跟随鼠标,
belowMouse: false, // title是否跟随鼠标,
// 之所以默认为body,是因为transform的效果影响
container: "body"
});
},
@ -376,7 +378,8 @@ BI.Single = BI.inherit(BI.Widget, {
if (BI.isKey(o.title) || BI.isKey(o.warningTitle)
|| BI.isFunction(o.title) || BI.isFunction(o.warningTitle)) {
this.enableHover({
belowMouse: o.belowMouse
belowMouse: o.belowMouse,
container: o.container
});
}
},
@ -3020,10 +3023,7 @@ BI.Combo = BI.inherit(BI.Widget, {
trigger: "click",
toggle: true,
direction: "bottom", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right
// 之所以默认为body,是因为
// 1、页面上如果有transform,那么fixed的表现行为就是absolute
// 2、另外在IE下,也会有位置偏移的问题
container: "body", // popupview放置的容器,默认为body
container: null, // popupview放置的容器,默认为this.element
isDefaultInit: false,
destroyWhenHide: false,
isNeedAdjustHeight: true, // 是否需要高度调整

14
dist/bundle.js vendored

@ -36257,7 +36257,9 @@ BI.Single = BI.inherit(BI.Widget, {
warningTitle: null,
tipType: null, // success或warning
value: null,
belowMouse: false // title是否跟随鼠标,
belowMouse: false, // title是否跟随鼠标,
// 之所以默认为body,是因为transform的效果影响
container: "body"
});
},
@ -36291,7 +36293,8 @@ BI.Single = BI.inherit(BI.Widget, {
if (BI.isKey(o.title) || BI.isKey(o.warningTitle)
|| BI.isFunction(o.title) || BI.isFunction(o.warningTitle)) {
this.enableHover({
belowMouse: o.belowMouse
belowMouse: o.belowMouse,
container: o.container
});
}
},
@ -38935,10 +38938,7 @@ BI.Combo = BI.inherit(BI.Widget, {
trigger: "click",
toggle: true,
direction: "bottom", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right
// 之所以默认为body,是因为
// 1、页面上如果有transform,那么fixed的表现行为就是absolute
// 2、另外在IE下,也会有位置偏移的问题
container: "body", // popupview放置的容器,默认为body
container: null, // popupview放置的容器,默认为this.element
isDefaultInit: false,
destroyWhenHide: false,
isNeedAdjustHeight: true, // 是否需要高度调整
@ -90232,7 +90232,7 @@ BI.DownListCombo = BI.inherit(BI.Widget, {
adjustLength: 0,
direction: "bottom",
trigger: "click",
container: null,
container: "body",
stopPropagation: false,
el: {}
});

6
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

14
dist/fineui.js vendored

@ -36506,7 +36506,9 @@ BI.Single = BI.inherit(BI.Widget, {
warningTitle: null,
tipType: null, // success或warning
value: null,
belowMouse: false // title是否跟随鼠标,
belowMouse: false, // title是否跟随鼠标,
// 之所以默认为body,是因为transform的效果影响
container: "body"
});
},
@ -36540,7 +36542,8 @@ BI.Single = BI.inherit(BI.Widget, {
if (BI.isKey(o.title) || BI.isKey(o.warningTitle)
|| BI.isFunction(o.title) || BI.isFunction(o.warningTitle)) {
this.enableHover({
belowMouse: o.belowMouse
belowMouse: o.belowMouse,
container: o.container
});
}
},
@ -39184,10 +39187,7 @@ BI.Combo = BI.inherit(BI.Widget, {
trigger: "click",
toggle: true,
direction: "bottom", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right
// 之所以默认为body,是因为
// 1、页面上如果有transform,那么fixed的表现行为就是absolute
// 2、另外在IE下,也会有位置偏移的问题
container: "body", // popupview放置的容器,默认为body
container: null, // popupview放置的容器,默认为this.element
isDefaultInit: false,
destroyWhenHide: false,
isNeedAdjustHeight: true, // 是否需要高度调整
@ -90481,7 +90481,7 @@ BI.DownListCombo = BI.inherit(BI.Widget, {
adjustLength: 0,
direction: "bottom",
trigger: "click",
container: null,
container: "body",
stopPropagation: false,
el: {}
});

6
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/widget.js vendored

@ -2226,7 +2226,7 @@ BI.DownListCombo = BI.inherit(BI.Widget, {
adjustLength: 0,
direction: "bottom",
trigger: "click",
container: null,
container: "body",
stopPropagation: false,
el: {}
});

5
src/base/combination/combo.js

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

7
src/base/single/single.js

@ -19,7 +19,9 @@ BI.Single = BI.inherit(BI.Widget, {
warningTitle: null,
tipType: null, // success或warning
value: null,
belowMouse: false // title是否跟随鼠标,
belowMouse: false, // title是否跟随鼠标,
// 之所以默认为body,是因为transform的效果影响
container: "body"
});
},
@ -53,7 +55,8 @@ BI.Single = BI.inherit(BI.Widget, {
if (BI.isKey(o.title) || BI.isKey(o.warningTitle)
|| BI.isFunction(o.title) || BI.isFunction(o.warningTitle)) {
this.enableHover({
belowMouse: o.belowMouse
belowMouse: o.belowMouse,
container: o.container
});
}
},

2
src/widget/downlist/combo.downlist.js

@ -10,7 +10,7 @@ BI.DownListCombo = BI.inherit(BI.Widget, {
adjustLength: 0,
direction: "bottom",
trigger: "click",
container: null,
container: "body",
stopPropagation: false,
el: {}
});

Loading…
Cancel
Save