If it helps anyone else; I found that the touch/drag scrolling speed was much faster than it would normally be in the browser (Google Chrome on touch-screen PC).
This can be fixed by just changing line 406:
this.moveScroll(event.touches[0], -1);
to:
this.moveScroll(event.touches[0], -this.ratio);
I haven't tested this on mobile devices as this was not relevant in my current project.
If it helps anyone else; I found that the touch/drag scrolling speed was much faster than it would normally be in the browser (Google Chrome on touch-screen PC).
This can be fixed by just changing line 406:
to:
I haven't tested this on mobile devices as this was not relevant in my current project.