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
On iOS 9 and 10, manup.js was injecting the value of the manifest file, eg. <meta name="apple-mobile-web-app-capable" content="fullscreen">
However it must be 'yes', ie. <meta name="apple-mobile-web-app-capable" content="yes"> for iOS to respect it and other settings.
I had to remove manup.js to get fullscreen working on iOS as it overrides existing tags. So a generalised fix might be for manup to check for existing tags before injection; although that's slow. Otherwise there needs to be a catch to translate the iOS values from manifest values to yes.
The text was updated successfully, but these errors were encountered:
On iOS 9 and 10, manup.js was injecting the value of the manifest file, eg.
<meta name="apple-mobile-web-app-capable" content="fullscreen">
However it must be 'yes', ie.
<meta name="apple-mobile-web-app-capable" content="yes">
for iOS to respect it and other settings.I had to remove manup.js to get fullscreen working on iOS as it overrides existing tags. So a generalised fix might be for manup to check for existing tags before injection; although that's slow. Otherwise there needs to be a catch to translate the iOS values from manifest values to yes.
The text was updated successfully, but these errors were encountered: