Last active
October 28, 2016 09:34
-
-
Save oliverfoster/733b5add179633a533dce73f374bb131 to your computer and use it in GitHub Desktop.
stop pinch and zoom ios10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//ios10 stop pinch and zoom | |
function prevent(e) { e.preventDefault() } | |
document.body.addEventListener('gesturechange', prevent); | |
document.body.addEventListener('gesturestart', prevent); | |
document.body.addEventListener('gestureend', prevent); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment