mirror of
https://github.com/moparisthebest/app-UI
synced 2024-12-21 23:18:52 -05:00
re-added code to block "normal" page scrolling on touch
This commit is contained in:
parent
84391b8407
commit
858ed0704f
@ -389,3 +389,13 @@ function onBackKey( event ) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
//block page scrolling
|
||||||
|
$(document).ready(function() {
|
||||||
|
|
||||||
|
$(document).bind( "touchmove", function (e) { e.preventDefault(); return false; } );
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user