Browse Source

Pull request #2577: 无JIRA任务 chore: bugfix

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

* commit 'd7172e89225067c9e9123ee4ef571b1f07f7460f':
  chore: bugfix
es6
guy 2 years ago
parent
commit
cea340e5e0
  1. 18
      src/case/trigger/trigger.icon.text.js

18
src/case/trigger/trigger.icon.text.js

@ -48,6 +48,7 @@ BI.IconTextTrigger = BI.inherit(BI.Trigger, {
BI.createWidget({
element: this,
type: "bi.horizontal_fill",
columnSize: [BI.isEmptyString(o.iconCls) ? 0 : (o.iconWrapperWidth || o.height), "fill", o.triggerWidth || o.height],
ref: function (_ref) {
self.wrapper = _ref;
},
@ -62,18 +63,13 @@ BI.IconTextTrigger = BI.inherit(BI.Trigger, {
iconHeight: o.iconHeight,
iconWidth: o.iconWidth,
disableSelected: true
},
width: BI.isEmptyString(o.iconCls) ? 0 : (o.iconWrapperWidth || o.height)
},
{
el: this.text,
lgap: BI.isEmptyString(o.iconCls) ? 5 : 0,
width: "fill"
}, {
el: this.trigerButton,
width: o.triggerWidth || o.height
}
]
}, {
el: this.text,
lgap: BI.isEmptyString(o.iconCls) ? 5 : 0
}, {
el: this.trigerButton
}]
});
},

Loading…
Cancel
Save