diff --git a/colorPicker.js b/colorPicker.js index 845f43e..3741cb1 100644 --- a/colorPicker.js +++ b/colorPicker.js @@ -445,6 +445,9 @@ function installEventListeners(THIS, off) { var onOffEvent = off ? removeEvent : addEvent; + onOffEvent(_isIE ? document.body : window, 'mouseup', stopChange); + onOffEvent(_isIE ? document.body : window, 'touchend', stopChange); + function touchStart_MouseDown(e) { var event = e || window.event, page = getPageXY(event), @@ -539,9 +542,6 @@ }); } - addEvent(_isIE ? document.body : window, 'mouseup', stopChange); - addEvent(_isIE ? document.body : window, 'touchend', stopChange); - // ------------------------------------------------------ // // --------- Event listner's callback functions -------- // // -------------------------------------------------------//