Merge pull request #744 from javierquevedo/master

Fixed issue in iOS devices that would cause all touch events to fail …
This commit is contained in:
Ian Gilman 2015-10-27 09:00:43 -07:00
commit 8eb4cd9453

View File

@ -2190,16 +2190,10 @@
function onTouchCancel( tracker, event ) {
var i,
touchCount = event.changedTouches.length,
gPoints = [];
for ( i = 0; i < touchCount; i++ ) {
gPoints.push( {
id: event.changedTouches[ i ].identifier,
type: 'touch'
} );
}
updatePointersCancel( tracker, event, gPoints );
gPoints = [],
pointsList = tracker.getActivePointersListByType( 'touch' );
abortTouchContacts( tracker, event, pointsList );
}