Some combination of the following should work, at least on iOS:
// Prevent top level gesture scrolling/zooming
// This if iOS Safari specific
document.addEventListener('gesturestart', function(e) {
e.preventDefault();
return false;
});
function touchStarted() {
// This prevents scrolling gestures within the browser window
return false;
}
function touchStarted() {
// This prevents scrolling gestures within the browser window
return false;
}
already worked! I will see how it can work on IOS, actually Im still struggling to get any touching interaction on IOS devices, maybe you know something on that too.