Skip to content

Instantly share code, notes, and snippets.

@jartes
Created October 6, 2014 16:39
Show Gist options
  • Save jartes/421536461126ff3f00b8 to your computer and use it in GitHub Desktop.
Save jartes/421536461126ff3f00b8 to your computer and use it in GitHub Desktop.
<script>
(function(doc) {
var viewport = document.getElementById('viewport');
if ( navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i)) {
viewport.setAttribute("content", "initial-scale=0.3");
} else if ( navigator.userAgent.match(/iPad/i) ) {
viewport.setAttribute("content", "initial-scale=0.7");
}
}(document));
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment