Created
August 27, 2018 00:24
-
-
Save lkishfy/f048ec5e3de10b2c58b911c9e010a5c3 to your computer and use it in GitHub Desktop.
Turn Off Pinch Zoom on Touch Screens
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
| document.addEventListener('touchmove', function(e) {e.preventDefault()}, {passive:false}); | |
| //Turn off pinch zoom | |
| document.addEventListener('touchstart', function(e) { | |
| if (e.touches.length > 1){ | |
| e.preventDefault(); | |
| } | |
| }, {passive: false}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment