From d7198e7394cd53e9d1e0c416996a66a97f0a7f45 Mon Sep 17 00:00:00 2001 From: Stefan Andres Charsley Date: Sat, 14 Sep 2013 12:15:32 +1200 Subject: [PATCH] Added missing line --- src/touch.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/touch.js b/src/touch.js index 06bd881aa..e4a6ede4a 100644 --- a/src/touch.js +++ b/src/touch.js @@ -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;