Skip to content

Instantly share code, notes, and snippets.

@lkishfy
Created August 27, 2018 00:24
Show Gist options
  • Select an option

  • Save lkishfy/f048ec5e3de10b2c58b911c9e010a5c3 to your computer and use it in GitHub Desktop.

Select an option

Save lkishfy/f048ec5e3de10b2c58b911c9e010a5c3 to your computer and use it in GitHub Desktop.
Turn Off Pinch Zoom on Touch Screens
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