Browse Source

Merge pull request #425 in FUI/fineui from ~WINDY/fui:master to master

* commit 'c4d26cf017a249058b0ced9b6f4bfc6a27b0f521':
  update
  update
  BI-20435
es6
guy 6 years ago
parent
commit
cc95e25ea2
  1. 40
      dist/_fineui.min.js
  2. 5
      dist/bundle.js
  3. 6
      dist/bundle.min.js
  4. 5
      dist/case.js
  5. 5
      dist/fineui.js
  6. 40
      dist/fineui.min.js
  7. 5
      src/case/combo/icontextvaluecombo/popup.icontextvalue.js

40
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

5
dist/bundle.js vendored

@ -78463,9 +78463,12 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, {
populate: function (items) {
BI.IconTextValueComboPopup.superclass.populate.apply(this, arguments);
var o = this.options;
items = BI.createItems(items, {
type: "bi.single_select_icon_text_item",
height: 30
height: 30,
iconHeight: o.iconHeight,
iconWidth: o.iconWidth
});
this.popup.populate(items);
},

6
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

5
dist/case.js vendored

@ -5984,9 +5984,12 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, {
populate: function (items) {
BI.IconTextValueComboPopup.superclass.populate.apply(this, arguments);
var o = this.options;
items = BI.createItems(items, {
type: "bi.single_select_icon_text_item",
height: 30
height: 30,
iconHeight: o.iconHeight,
iconWidth: o.iconWidth
});
this.popup.populate(items);
},

5
dist/fineui.js vendored

@ -78706,9 +78706,12 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, {
populate: function (items) {
BI.IconTextValueComboPopup.superclass.populate.apply(this, arguments);
var o = this.options;
items = BI.createItems(items, {
type: "bi.single_select_icon_text_item",
height: 30
height: 30,
iconHeight: o.iconHeight,
iconWidth: o.iconWidth
});
this.popup.populate(items);
},

40
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

5
src/case/combo/icontextvaluecombo/popup.icontextvalue.js

@ -42,9 +42,12 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, {
populate: function (items) {
BI.IconTextValueComboPopup.superclass.populate.apply(this, arguments);
var o = this.options;
items = BI.createItems(items, {
type: "bi.single_select_icon_text_item",
height: 30
height: 30,
iconHeight: o.iconHeight,
iconWidth: o.iconWidth
});
this.popup.populate(items);
},

Loading…
Cancel
Save