@ -1,5 +1,6 @@
# 更新日志
2.0(2020-12)
- 修复了colorChooser选择透明后, 打开更多选色面板, 直接点保存会选中自动的问题
- bi.file支持限制上传文件数
2.0(2020-11)
@ -130,8 +130,12 @@ BI.HexColorChooserPopup = BI.inherit(BI.Widget, {
self.more.hideView();
break;
case 1:
self.setValue(self.customColorChooser.getValue());
var color = self.customColorChooser.getValue();
// farbtastic选择器没有透明和自动选项,点击保存不应该设置透明
if (BI.isNotEmptyString(color)) {
self.setValue(color);
self._dealStoreColors();
}
self.fireEvent(BI.ColorChooserPopup.EVENT_CHANGE, arguments);