Skip to content

Instantly share code, notes, and snippets.

@arpruss
Last active August 13, 2018 00:33
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 arpruss/41de5118805336f4a7123cc939648ad2 to your computer and use it in GitHub Desktop.
Save arpruss/41de5118805336f4a7123cc939648ad2 to your computer and use it in GitHub Desktop.
Disable zoom control
var meta = document.querySelector('meta[name="viewport"]');
if (meta != null)
meta.content = 'min-width=10, max-width=10000, min-height=10, max-height=10000, initial-scale=1.0, maximum-scale=50.0, minimum-scale=0.02, user-scalable=1';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment