diff --git a/src/case/colorchooser/farbtastic/farbtastic.js b/src/case/colorchooser/farbtastic/farbtastic.js index f8645d5d52..58eb563ca8 100644 --- a/src/case/colorchooser/farbtastic/farbtastic.js +++ b/src/case/colorchooser/farbtastic/farbtastic.js @@ -179,8 +179,6 @@ BI.Farbtastic = BI.inherit(BI.BasicButton, { // Saturation/Luminance gradient this.colorWrapper.element.css("backgroundColor", this._pack(this._HSLToRGB([this.hsl[0], 1, 0.5]))); - - this.fireEvent(BI.Farbtastic.EVENT_CHANGE, this.getValue(), this); }, _absolutePosition: function (el) { @@ -257,6 +255,7 @@ BI.Farbtastic = BI.inherit(BI.BasicButton, { var lum = Math.max(0, Math.min(1, -(pos.y / this.constants.SQUARE) + .5)); this._setHSL([this.hsl[0], sat, lum]); } + this.fireEvent(BI.Farbtastic.EVENT_CHANGE, this.getValue(), this); }, doClick: function (event) {