I am using Pep.js for kinetic drag on multi-touch, but my drag events are not being registered because when I try to drag an object in the safari, on iOS, window the window itse
I have found this solution while working with the #ionicframework
CSS:
html, body { overflow:hidden; }
JS:
$(window).bind( 'touchmove', function(e) { e.preventDefault(); } );