Skip to content

Instantly share code, notes, and snippets.

@goofmint
Created June 21, 2018 02:50
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 goofmint/a6d7edc4520d498d4d3d6efae319086b to your computer and use it in GitHub Desktop.
Save goofmint/a6d7edc4520d498d4d3d6efae319086b to your computer and use it in GitHub Desktop.
window.addEventListener('beforeinstallprompt', function(e) {
e.userChoice.then(function(choiceResult) {
if(choiceResult.outcome == 'dismissed') {
console.log('User cancelled home screen install');
}
else {
console.log('User added to home screen');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment