1
0
mirror of https://github.com/moparisthebest/app-UI synced 2024-08-13 16:54:00 -04:00

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

This commit is contained in:
Andrew Trice 2012-05-29 21:26:12 -04:00
parent 9c26b44bf2
commit d5b062c17f

View File

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