If you change ipad position from portrait to landscape viewport scale will be wrong (site is to big for viewport). I've searched a lot and found the same problem on lessframework.com

Take a look — http://www.youtube.com/watch?v=MGDjaE-eKAY

But there is no problem on stuffandnonsense.co.uk/projects/320andup/

I can't find out what makes 320andup working right and lessframework.com working wrong on ipad.

Any ideas?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

I view-sourced if for you

if (navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPad/i)) {
var viewportmeta = document.querySelectorAll('meta[name="viewport"]')[0];
if (viewportmeta) {
viewportmeta.content = 'width=device-width, minimum-scale=1.0, maximum-scale=1.0';
document.body.addEventListener('gesturestart', function() {
viewportmeta.content = 'width=device-width, minimum-scale=0.25, maximum-scale=1.6';
}, false);
}
}
link|improve this answer
Oh, thank you. I don't know why I haven't checked script.js – mvod Nov 7 '11 at 18:36
I guess you were looking for some html element of meta tag. Thanks for accepting. – Gerben Nov 7 '11 at 18:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.