Created
October 28, 2013 17:58
-
-
Save esteinborn/7201502 to your computer and use it in GitHub Desktop.
Have you launched this site from your homescreen?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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