You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: injected/src/features/web-compat.js
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -719,8 +719,11 @@ export class WebCompat extends ContentFeature {
719
719
// Race condition: depending on the loading state of the page, initial scale may or may not be respected, so the page may look zoomed-in after applying this hack.
720
720
// Usually this is just an annoyance, but it may be a bigger issue if user-scalable=no is set, so we remove it too.
721
721
forcedValues['user-scalable']='yes';
722
-
// make sure you can zoom out to see the whole page. See https://app.asana.com/1/137249556945/project/1206777341262243/task/1207691440660873
// override minimum-scale to make sure you can zoom out to see the whole page. See https://app.asana.com/1/137249556945/project/1206777341262243/task/1207691440660873
725
+
forcedValues['minimum-scale']=0;
726
+
}
724
727
}else{
725
728
// mobile mode with a viewport tag
726
729
// fix an edge case where WebView forces the wide viewport
0 commit comments