Skip to content

Instantly share code, notes, and snippets.

@hellonicolas
Created July 7, 2014 20:51
Show Gist options
  • Save hellonicolas/e0c7a4e9ce05727f32d0 to your computer and use it in GitHub Desktop.
Save hellonicolas/e0c7a4e9ce05727f32d0 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
var md = new MobileDetect(window.navigator.userAgent),
isMobile = md.mobile() != null ? true : false,
isPhone = md.phone() != null ? true : false,
isTablet = md.tablet() != null ? true : false;
if ( isPhone ) {
var vp = document.getElementById('viewport');
vp.setAttribute('content','width=device-width, initial-scale=.55, user-scalable=no, target-densitydpi=device-dpi');
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment