Fixes touch event handling in nested scrollbar containers

This commit is contained in:
mdsa 2015-11-23 04:31:05 -08:00
parent 6e32d3ddce
commit 4c08b0e089

View File

@ -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);