Right, for some reason, after rotating to landscape and then rotating back to portrait, you have to zoom in before you can zoom back out. I assume this is due to the meta viewport properties in use:
Without height=device-height, rotating to landscape screws up the zooming completely. With it, your bug happens. The only solution for both problems is setting maximum-scale=1, and that’s no solution at all.
initial-scale=1.0, width=device-width, height=device-height
Without height=device-height, rotating to landscape screws up the zooming completely. With it, your bug happens. The only solution for both problems is setting maximum-scale=1, and that’s no solution at all.
Ideas?