Skip to content

Commit

Permalink
Added missing line
Browse files Browse the repository at this point in the history
  • Loading branch information
charsleysa committed Sep 14, 2013
1 parent 2d305a8 commit d7198e7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/touch.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@
if (delta > 0 && delta <= 250) touch.isDoubleTap = true
touch.last = now
longTapTimeout = setTimeout(longTap, longTapDelay)
// adds the current touch contact for IE gesture recognition
if (gesture && e.type == 'MSPointerDown') gesture.addPointer(e.pointerId);
})
.on('touchmove MSPointerMove', function(e){
if(e.type == 'MSPointerMove' && (e.pointerType != e.MSPOINTER_TYPE_TOUCH || !e.isPrimary)) return;
Expand Down

0 comments on commit d7198e7

Please sign in to comment.