diff --git a/dist/bundle.js b/dist/bundle.js index b50e2e43d..17a8fceb7 100644 --- a/dist/bundle.js +++ b/dist/bundle.js @@ -77207,15 +77207,6 @@ BI.ColorPickerEditor = BI.inherit(BI.Widget, { } }, - _setEnable: function () { - BI.ColorPickerEditor.superclass._setEnable.apply(this, arguments); - this._showPreColor(this._isEmptyRGB() && this.transparent.isSelected() ? "transparent" : BI.DOM.rgb2hex(BI.DOM.json2rgb({ - r: this.storeValue.r, - g: this.storeValue.g, - b: this.storeValue.b - }))); - }, - setValue: function (color) { if (color === "transparent") { this.transparent.setSelected(true); diff --git a/dist/case.js b/dist/case.js index 8a3ad79f6..265439d24 100644 --- a/dist/case.js +++ b/dist/case.js @@ -4636,15 +4636,6 @@ BI.ColorPickerEditor = BI.inherit(BI.Widget, { } }, - _setEnable: function () { - BI.ColorPickerEditor.superclass._setEnable.apply(this, arguments); - this._showPreColor(this._isEmptyRGB() && this.transparent.isSelected() ? "transparent" : BI.DOM.rgb2hex(BI.DOM.json2rgb({ - r: this.storeValue.r, - g: this.storeValue.g, - b: this.storeValue.b - }))); - }, - setValue: function (color) { if (color === "transparent") { this.transparent.setSelected(true); diff --git a/dist/fineui.js b/dist/fineui.js index ca45db298..66a67972d 100644 --- a/dist/fineui.js +++ b/dist/fineui.js @@ -77456,15 +77456,6 @@ BI.ColorPickerEditor = BI.inherit(BI.Widget, { } }, - _setEnable: function () { - BI.ColorPickerEditor.superclass._setEnable.apply(this, arguments); - this._showPreColor(this._isEmptyRGB() && this.transparent.isSelected() ? "transparent" : BI.DOM.rgb2hex(BI.DOM.json2rgb({ - r: this.storeValue.r, - g: this.storeValue.g, - b: this.storeValue.b - }))); - }, - setValue: function (color) { if (color === "transparent") { this.transparent.setSelected(true); diff --git a/src/case/colorchooser/colorpicker/editor.colorpicker.js b/src/case/colorchooser/colorpicker/editor.colorpicker.js index be9a33834..1bd36018e 100644 --- a/src/case/colorchooser/colorpicker/editor.colorpicker.js +++ b/src/case/colorchooser/colorpicker/editor.colorpicker.js @@ -190,15 +190,6 @@ BI.ColorPickerEditor = BI.inherit(BI.Widget, { } }, - _setEnable: function () { - BI.ColorPickerEditor.superclass._setEnable.apply(this, arguments); - this._showPreColor(this._isEmptyRGB() && this.transparent.isSelected() ? "transparent" : BI.DOM.rgb2hex(BI.DOM.json2rgb({ - r: this.storeValue.r, - g: this.storeValue.g, - b: this.storeValue.b - }))); - }, - setValue: function (color) { if (color === "transparent") { this.transparent.setSelected(true);