Browse Source

BI-44142 fix: "bi.text_value_combo"trigger的text也可以接受函数

es6
Zhenfei.Li 5 years ago
parent
commit
2ab08ae683
  1. 2
      dist/2.0/fineui.ie.js
  2. 10
      dist/2.0/fineui.ie.min.js
  3. 2
      dist/2.0/fineui.js
  4. 4
      dist/2.0/fineui.min.js
  5. 2
      dist/bundle.ie.js
  6. 10
      dist/bundle.ie.min.js
  7. 2
      dist/bundle.js
  8. 4
      dist/bundle.min.js
  9. 2
      dist/case.js
  10. 2
      dist/fineui.ie.js
  11. 10
      dist/fineui.ie.min.js
  12. 2
      dist/fineui.js
  13. 2
      dist/fineui.min.css
  14. 4
      dist/fineui.min.js
  15. 2
      dist/fineui_without_jquery_polyfill.js
  16. 2
      dist/utils.min.js
  17. 2
      src/case/trigger/trigger.text.select.js

2
dist/2.0/fineui.ie.js vendored

@ -59399,7 +59399,7 @@ BI.SelectTextTrigger = BI.inherit(BI.Trigger, {
if (result.length > 0) {
return result.join(",");
} else {
return o.text;
return BI.isFunction(o.text) ? o.text() : o.text;
}
},

10
dist/2.0/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/2.0/fineui.js vendored

@ -59803,7 +59803,7 @@ BI.SelectTextTrigger = BI.inherit(BI.Trigger, {
if (result.length > 0) {
return result.join(",");
} else {
return o.text;
return BI.isFunction(o.text) ? o.text() : o.text;
}
},

4
dist/2.0/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/bundle.ie.js vendored

@ -59399,7 +59399,7 @@ BI.SelectTextTrigger = BI.inherit(BI.Trigger, {
if (result.length > 0) {
return result.join(",");
} else {
return o.text;
return BI.isFunction(o.text) ? o.text() : o.text;
}
},

10
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/bundle.js vendored

@ -59803,7 +59803,7 @@ BI.SelectTextTrigger = BI.inherit(BI.Trigger, {
if (result.length > 0) {
return result.join(",");
} else {
return o.text;
return BI.isFunction(o.text) ? o.text() : o.text;
}
},

4
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/case.js vendored

@ -9664,7 +9664,7 @@ BI.SelectTextTrigger = BI.inherit(BI.Trigger, {
if (result.length > 0) {
return result.join(",");
} else {
return o.text;
return BI.isFunction(o.text) ? o.text() : o.text;
}
},

2
dist/fineui.ie.js vendored

@ -59644,7 +59644,7 @@ BI.SelectTextTrigger = BI.inherit(BI.Trigger, {
if (result.length > 0) {
return result.join(",");
} else {
return o.text;
return BI.isFunction(o.text) ? o.text() : o.text;
}
},

10
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.js vendored

@ -60048,7 +60048,7 @@ BI.SelectTextTrigger = BI.inherit(BI.Trigger, {
if (result.length > 0) {
return result.join(",");
} else {
return o.text;
return BI.isFunction(o.text) ? o.text() : o.text;
}
},

2
dist/fineui.min.css vendored

File diff suppressed because one or more lines are too long

4
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/fineui_without_jquery_polyfill.js vendored

@ -42858,7 +42858,7 @@ BI.SelectTextTrigger = BI.inherit(BI.Trigger, {
if (result.length > 0) {
return result.join(",");
} else {
return o.text;
return BI.isFunction(o.text) ? o.text() : o.text;
}
},

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

2
src/case/trigger/trigger.text.select.js

@ -43,7 +43,7 @@ BI.SelectTextTrigger = BI.inherit(BI.Trigger, {
if (result.length > 0) {
return result.join(",");
} else {
return o.text;
return BI.isFunction(o.text) ? o.text() : o.text;
}
},

Loading…
Cancel
Save