Here’s another solution I found on the web. PauloN has tested it and reports good results:
Put this anywhere in your app - the Gobal Code module is a good one.
document.addEventListener('touchmove', function(e) {
e.preventDefault();
}, { passive: false });
If you’re using BASIC, do it like this:
JavaScript
document.addEventListener('touchmove', function(e) {
e.preventDefault();
}, { passive: false });
End JavaScript