From 4c08b0e089dd8cc77ae09141fe1ec4f26221f819 Mon Sep 17 00:00:00 2001 From: mdsa Date: Mon, 23 Nov 2015 04:31:05 -0800 Subject: [PATCH] Fixes touch event handling in nested scrollbar containers --- src/js/plugin/handler/touch.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/js/plugin/handler/touch.js b/src/js/plugin/handler/touch.js index b241384..a8bca13 100644 --- a/src/js/plugin/handler/touch.js +++ b/src/js/plugin/handler/touch.js @@ -90,6 +90,9 @@ function bindTouchHandler(element, i, supportsTouch, supportsIePointer) { } } function touchMove(e) { + if (!inLocalTouch && i.settings.swipePropagation) { + touchStart(e); + } if (!inGlobalTouch && inLocalTouch && shouldHandle(e)) { var touch = getTouch(e);