Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What triggers android chrome to show the "make page mobile-friendly" panel?

When I load http://www.thinkloop.com/article/state-driven-routing-react-redux-selectors/ in android chrome, a panel appears at the bottom of the site asking if I would like to make the page mobile-friendly.

Clicking on that option changes very little on the page since it is already very mobile-friendly.

What triggers this question and how can I address the issues it thinks it detects?

like image 818
Baz Avatar asked Mar 10 '23 17:03

Baz


1 Answers

It's because the viewport isn't defined in the sites meta tags. The browser doesn't know that the site has a responsive design and will attempt to set one if the prompt is clicked even if one is already defined.

like image 154
Rob Cha Avatar answered Apr 12 '23 22:04

Rob Cha