Kevin Haag

Results 2 comments of Kevin Haag

Had the same issue as mprewitt, and uninstalling, restarting sketch, and reinstalling did the trick for me as well.

I found a workaround for this using the dragStart and dragEnd events: ``` $carousel.on( 'dragStart.flickity', function( event, pointer ) { document.ontouchmove = function (e) { e.preventDefault(); } }); $carousel.on( 'dragEnd.flickity',...