Merge pull request #188 from iangilman/touch

Ignoring touchMove if we didn't get the touchStart
This commit is contained in:
iangilman 2013-08-19 09:57:36 -07:00
commit dde052a22a

View File

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