re-added code to block "normal" page scrolling on touch

This commit is contained in:
Andrew Trice 2012-05-29 21:25:26 -04:00
parent 84391b8407
commit 858ed0704f
1 changed files with 10 additions and 0 deletions

View File

@ -389,3 +389,13 @@ function onBackKey( event ) {
}
}
*/
//block page scrolling
$(document).ready(function() {
$(document).bind( "touchmove", function (e) { e.preventDefault(); return false; } );
}