Browse Source

Pull request #1446: 无JIRA任务

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

* commit 'b6ecdff7c58b378d515a3d579c5dbe8f65b31b62':
  文本支持点击
es6
guy 4 years ago
parent
commit
551537691d
  1. 6
      src/case/colorchooser/colorchooser.js

6
src/case/colorchooser/colorchooser.js

@ -32,8 +32,8 @@ BI.ColorChooser = BI.inherit(BI.Widget, {
ref: function (_ref) {
self.trigger = _ref;
},
width: o.width - 2,
height: o.height - 2
width: o.type ? o.width : o.width - 2,
height: o.type ? o.height : o.height - 2
}, o.el),
popup: {
el: BI.extend({
@ -98,4 +98,4 @@ BI.ColorChooser = BI.inherit(BI.Widget, {
}
});
BI.ColorChooser.EVENT_CHANGE = "EVENT_CHANGE";
BI.shortcut("bi.color_chooser", BI.ColorChooser);
BI.shortcut("bi.color_chooser", BI.ColorChooser);

Loading…
Cancel
Save