Skip to content

Instantly share code, notes, and snippets.

@oliverfoster
Last active October 28, 2016 09:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oliverfoster/733b5add179633a533dce73f374bb131 to your computer and use it in GitHub Desktop.
Save oliverfoster/733b5add179633a533dce73f374bb131 to your computer and use it in GitHub Desktop.
stop pinch and zoom ios10
//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