2
0
mirror of https://github.com/PitPik/colorPicker.git synced 2025-09-24 16:40:57 -06:00

mouseup event not fire on IE8-

See isuue #6
This commit is contained in:
Ruben Almeida 2016-08-18 17:23:51 +02:00 committed by GitHub
parent 99d7f63b8e
commit 189f81b0c5

View File

@ -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 -------- //
// -------------------------------------------------------//