Skip to content

Instantly share code, notes, and snippets.

@zlojkashtan
Last active August 29, 2015 14:11
Show Gist options
  • Save zlojkashtan/36574344102fe70a1773 to your computer and use it in GitHub Desktop.
Save zlojkashtan/36574344102fe70a1773 to your computer and use it in GitHub Desktop.
Check viewport
<script type="text/javascript">
if( navigator.userAgent.match(/iPad/i) != null ){
document.write('<meta name="viewport" content="width=1000, initial-scale=0.73, maximum-scale=1, user-scalable=1">');
} else if(navigator.userAgent.match(/iPhone/i) != null ) {
document.write('<meta name="viewport" content="width=320">');
} else {
document.write('<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">');
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment