Last active
August 29, 2015 14:11
-
-
Save zlojkashtan/36574344102fe70a1773 to your computer and use it in GitHub Desktop.
Check viewport
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
<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