diff --git a/src/js/plugin/handler/touch.js b/src/js/plugin/handler/touch.js index 498afc3..b565a28 100644 --- a/src/js/plugin/handler/touch.js +++ b/src/js/plugin/handler/touch.js @@ -128,6 +128,11 @@ function bindTouchHandler(element, i, supportsTouch, supportsIePointer) { return; } + if(!speed.x && !speed.y) { + clearInterval(easingLoop); + return; + } + if (Math.abs(speed.x) < 0.01 && Math.abs(speed.y) < 0.01) { clearInterval(easingLoop); return;