Skip to content

Instantly share code, notes, and snippets.

@ingowennemaring
Created April 22, 2013 09:02
Show Gist options
  • Save ingowennemaring/5433404 to your computer and use it in GitHub Desktop.
Save ingowennemaring/5433404 to your computer and use it in GitHub Desktop.
Check if website is added to the home screen or opened in mobile safari
if(navigator.standalone === undefined || !!navigator.standalone) {
// if added to home screen do this
} else {
// if opened in mobile safari do this
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment