Skip to content

Instantly share code, notes, and snippets.

@beckje01
Created April 18, 2011 19:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save beckje01/926010 to your computer and use it in GitHub Desktop.
Save beckje01/926010 to your computer and use it in GitHub Desktop.
Check for Address Bar in iOS
if(window.navigator.standalone)
{//This page is currently standalone
console.log("stand alone");
}
if(!("standalone" in window.navigator))
{//This Page is shown in a browser that can't
console.log("can't do standalone");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment