Skip to content

Instantly share code, notes, and snippets.

@esteinborn
Created October 28, 2013 17:58
Show Gist options
  • Save esteinborn/7201502 to your computer and use it in GitHub Desktop.
Save esteinborn/7201502 to your computer and use it in GitHub Desktop.
Have you launched this site from your homescreen?
if (window.navigator.userAgent.indexOf('iPhone') != -1) {
if (window.navigator.standalone === true) {
// Initialize your app
}else{
// Display a message asking to add the app to the Home Screen
}
}else{
document.location.href = 'please-open-from-an-iphone.html';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment