From 96c14f76176d75e58f0e48abb698421d96a9ecad Mon Sep 17 00:00:00 2001 From: Ian Gilman Date: Fri, 16 Aug 2013 10:09:49 -0700 Subject: [PATCH] Ignoring touchMove if we didn't get the touchStart --- src/mousetracker.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/mousetracker.js b/src/mousetracker.js index 4d81dc6b..1dbe7f1b 100644 --- a/src/mousetracker.js +++ b/src/mousetracker.js @@ -993,6 +993,10 @@ touchB, pinchDelta; + if ( !THIS[ tracker.hash ].lastTouch ) { + return; + } + if( event.touches.length === 1 && event.targetTouches.length === 1 && event.changedTouches.length === 1 &&