Browse Source

Merge pull request #7493 from overleaf/ab-apple-meta-tags

Add meta tags for Apple mobile devices

GitOrigin-RevId: 0154e497e9844fc60e6672a7fae9e2043c9e7d81
Timothée Alby 4 years ago
parent
commit
9df2e09fa2
1 changed files with 3 additions and 0 deletions
  1. 3 0
      services/web/app/views/_metadata.pug

+ 3 - 0
services/web/app/views/_metadata.pug

@@ -107,6 +107,9 @@ if !metadata || metadata.viewport !== false
 if settings.robotsNoindex
 	meta(name="robots" content="noindex")
 
+//- Apple devices
+meta(name="apple-mobile-web-app-capable" content="yes")
+meta(name="apple-mobile-web-app-status-bar-style" content="black-translucent")
 
 //- Icons
 link(rel="icon", href="/favicon.ico")