I\'m messing around with touch events on a touch slider and I keep getting the following error:
Ignored attempt to cancel a touchmove event with canc
Please remove e.preventDefault(), because event.cancelable of touchmove is false. So you can't call this method.
e.preventDefault()
event.cancelable
false