Greetings,
Though I have not found a way to turn this off through the SDK, I HAVE found a way to turn this off from your web content.
Using JavaScript just add this:
For jQuery users:
Code:
$().ready(function(){
document.ontouchmove = function(e){ e.preventDefault(); }
});
And everyone else:
Code:
document.onload = function(){
document.ontouchmove = function(e){ e.preventDefault(); }
};
Enjoy,
- Peter Schmalfeldt