Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cheeaun/901302 to your computer and use it in GitHub Desktop.
Save cheeaun/901302 to your computer and use it in GitHub Desktop.
Improved version of JavaScript fix for the iOS viewport scaling bug. See http://www.blog.highub.com/mobile-2/a-fix-for-iphone-viewport-scale-bug/ , also http://adactio.com/journal/4470/
(function() {
var metas = document.querySelectorAll('meta[name="viewport"]'),
forEach = [].forEach;
function fixMetas(firstTime) {
forEach.call(metas, function(el) {
el.content = firstTime
? 'width=device-width,minimum-scale=1.0,maximum-scale=1.0'
: 'width=device-width,minimum-scale=0.25,maximum-scale=1.6';
});
}
fixMetas(true);
document.body.addEventListener('gesturestart', fixMetas, false);
}());
@mathiasbynens
Copy link

I’d love to re-use the argument var instead of creating a new one (scales), but I can’t think of a flexible enough variable name. :)

@cheeaun
Copy link
Author

cheeaun commented Apr 4, 2011

@mathiasbynens Perhaps just re-use the passed firstTime variable instead of creating the new scales? :P

@mathiasbynens
Copy link

@cheeaun Yeah that’s what I’m talking about. I’d have to rename the variable for clarity though, and I can’t think of a good name that makes sense.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment