diff --git a/src/Impetus.js b/src/Impetus.js index 920d895..3826209 100644 --- a/src/Impetus.js +++ b/src/Impetus.js @@ -159,7 +159,7 @@ export default class Impetus { */ function normalizeEvent(ev) { if (ev.type === 'touchmove' || ev.type === 'touchstart' || ev.type === 'touchend') { - var touch = ev.targetTouches[0] || ev.changedTouches[0]; + var touch = ev.changedTouches[0]; return { x: touch.clientX, y: touch.clientY,