Browse Source

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

* commit '8495459cf7f8acdf5177ece0c900cee5d863d86a':
  BI-23830
es6
guy 6 years ago
parent
commit
404084cb1b
  1. 6
      dist/_fineui.min.js
  2. 2
      dist/bundle.js
  3. 2
      dist/bundle.min.js
  4. 2
      dist/case.js
  5. 2
      dist/fineui.js
  6. 6
      dist/fineui.min.js
  7. 2
      src/case/colorchooser/colorpicker/editor.colorpicker.js

6
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/bundle.js vendored

@ -77145,7 +77145,7 @@ BI.ColorPickerEditor = BI.inherit(BI.Widget, {
},
getValue: function () {
if (this.transparent.isSelected()) {
if (this._isEmptyRGB() && this.transparent.isSelected()) {
return "transparent";
}
return BI.DOM.rgb2hex(BI.DOM.json2rgb({

2
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/case.js vendored

@ -4655,7 +4655,7 @@ BI.ColorPickerEditor = BI.inherit(BI.Widget, {
},
getValue: function () {
if (this.transparent.isSelected()) {
if (this._isEmptyRGB() && this.transparent.isSelected()) {
return "transparent";
}
return BI.DOM.rgb2hex(BI.DOM.json2rgb({

2
dist/fineui.js vendored

@ -77388,7 +77388,7 @@ BI.ColorPickerEditor = BI.inherit(BI.Widget, {
},
getValue: function () {
if (this.transparent.isSelected()) {
if (this._isEmptyRGB() && this.transparent.isSelected()) {
return "transparent";
}
return BI.DOM.rgb2hex(BI.DOM.json2rgb({

6
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
src/case/colorchooser/colorpicker/editor.colorpicker.js

@ -214,7 +214,7 @@ BI.ColorPickerEditor = BI.inherit(BI.Widget, {
},
getValue: function () {
if (this.transparent.isSelected()) {
if (this._isEmptyRGB() && this.transparent.isSelected()) {
return "transparent";
}
return BI.DOM.rgb2hex(BI.DOM.json2rgb({

Loading…
Cancel
Save