diff --git a/client/assets/js/main.js b/client/assets/js/main.js index a7e3307..13c843a 100644 --- a/client/assets/js/main.js +++ b/client/assets/js/main.js @@ -130,7 +130,7 @@ var scrollerTouchMoveHandler = function(e) { var value = ((touch.pageY - mouseInitPosY > 0) ? 'down' : 'up'); var now = new Date().getTime(); - if (value === scrollLastValue && scrollLastTimestamp !== null && now - scrollLastTimestamp < 200) { + if (touch.pageY === mouseInitPosY || value === scrollLastValue && scrollLastTimestamp !== null && now - scrollLastTimestamp < 200) { return; }