I have been racking my brain trying to figure this out and I have searched all over this site and others and have found numerous solutions, none of which have any effect. I have tried the viewport meta tag in numerous configurations, I have tried removing the fb-root div, making sure there is no height=100%, and so on... nothing seems to make this page open at full width and size.
Asked
Active
Viewed 177 times
2
-
what you have tried yet. – Prince Kumar Sharma Dec 29 '12 at 05:06
-
May this link will be helpful to you http://stackoverflow.com/questions/2219685/how-can-i-enable-zoom-in-on-uiwebview-which-inside-the-uiscrollview – Prince Kumar Sharma Dec 29 '12 at 05:10
-
try the link I have just given – Prince Kumar Sharma Dec 29 '12 at 05:12
-
I reviewed the 2219685 issue and not sure it pertains to this issue, but reviewing it again now and seeing if I can pull something from it. Thanks for the responses so far. Seems to be still locking to the upper left portion of the site fully zoomed in. – Gary Gould Dec 29 '12 at 05:14
1 Answers
0
Figured out the issue... I literally went file by file and just noticed this little tid bit of code in one of the Highslide files (mobile.js)... simply removed and now all works like I wanted it to.
// Add a meta tag to have the iPhone render the page 1:1 hs.createElement('meta', { name: 'viewport', content: 'width=device-width; initial-scale=1.0; maximum-scale=1.0;' }, null, document.getElementsByTagName('head')[0]);

Gary Gould
- 29
- 2