Each page in Phabricator has this viewport tag:
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
The problem is that maximum-scale prevents users from zooming, which is extremely annoying and an accessibility issue (especially if they contain images that are designed for desktop monitors). Preventing user zooming doesn't make sense on these pages, so can you remove it?
The relevant code is in src/view/page/PhabricatorBarePageView.php. Just removing the "maximum-scale" part should fix this.
Reproduction Steps:
- Open this page on your phone
- Try to use pinch to zoom.
Versions:
- Whatever version this page is using (view source on this page -> search for "viewport")
- master