Skip to content

Commit 8c95246

Browse files
committed
Fixed #9 touch scrolling on mobile devices
1 parent 0ecbde2 commit 8c95246

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jquery.custom-scrollbar.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -396,14 +396,14 @@
396396
},
397397

398398
startTouchScrolling:function (event) {
399-
if (event.touches && event.touches.length > 0) {
399+
if (event.touches && event.touches.length == 1) {
400400
this.setScrollEvent(event.touches[0]);
401401
this.touchScrolling = true;
402402
}
403403
},
404404

405405
touchScroll:function (event) {
406-
if (this.touchScrolling && event.touches && event.touches.length > 0) {
406+
if (this.touchScrolling && event.touches && event.touches.length == 1) {
407407
this.moveScroll(event.touches[0], -this.ratio);
408408
event.preventDefault();
409409
}

0 commit comments

Comments
 (0)