I am trying to disable pinch-zoom on a web app, but the following meta-tag is having zero effect in iOS Safari and iOS Chrome:
<meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0"/>
I tried adding the following to the meta tag, but I'm having no success there either. Pinch (and double-tap) zooming is still enabled.
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
Any insight into why those two meta tags might not be working?