You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i'm a litte clumsy with git, so i put the code here
more on less on line 206
vartouchMoveSlideLastYif(base.config.touchNav){$container.on("touchstart",function(e){vareventData=e.originalEvent.touches[0];touchMoveSlideLastY=eventData.clientY;e.preventDefault();base._onMoveStart(eventData.pageX,eventData.pageY);base.actionClick.x=base.currClick.x=eventData.pageX;base.actionClick.y=base.currClick.y=eventData.pageY;base.actionClick.action=true;returne.stopPropagation();});$container.on("touchmove",function(e){vareventData=e.originalEvent.touches[0];varcurrentY=eventData.clientY;if((currentY<touchMoveSlideLastY-10)||(currentY>touchMoveSlideLastY+10)){// moved verticallywindow.scrollBy(0,touchMoveSlideLastY-currentY);return;}touchMoveSlideLastY=currentY;e.preventDefault();base.actionClick.action=false;base._onMove(eventData.pageX,eventData.pageY);base.currClick.x=eventData.pageX;base.currClick.y=eventData.pageY;returne.stopPropagation();});
The text was updated successfully, but these errors were encountered:
i'm a litte clumsy with git, so i put the code here
more on less on line 206
The text was updated successfully, but these errors were encountered: