Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fredchu/8ae6865e1750b7dccc24 to your computer and use it in GitHub Desktop.
Save fredchu/8ae6865e1750b7dccc24 to your computer and use it in GitHub Desktop.
Check the web page if is added to homescreen (web app mode for iOS Safari)
if (window.navigator.standalone) {
// The app is running in standalone mode.
}
// or
if (window.navigator.standalone && navigator.userAgent.match( /like Mac OS X/i )) {
// added to homescreen by mobile Safari
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment