Skip to content

Instantly share code, notes, and snippets.

@Usse
Created June 6, 2013 14:43
Show Gist options
  • Save Usse/5722033 to your computer and use it in GitHub Desktop.
Save Usse/5722033 to your computer and use it in GitHub Desktop.
Fix orientation change bug on iPad and some other tablets
if (navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPad/i)) {
var viewportmeta = document.querySelector('meta[name="viewport"]');
if (viewportmeta) {
viewportmeta.content = 'width=device-width, minimum-scale=1.0, maximum-scale=1.0, initial-scale=1.0';
document.body.addEventListener('gesturestart', function () {
viewportmeta.content = 'width=device-width, minimum-scale=0.25, maximum-scale=1.6';
}, false);
}
}
http://stackoverflow.com/questions/2557801/how-do-i-reset-the-scale-zoom-of-a-web-app-on-an-orientation-change-on-the-iphon
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment