btnSave.addEventListener('click', function() { | |
if(deferredPrompt !== undefined) { | |
// インストールプロンプト表示 | |
deferredPrompt.prompt(); | |
deferredPrompt.userChoice | |
.then(function(choiceResult) { | |
// キャンセルされた場合 | |
if(choiceResult.outcome == 'dismissed') { | |
console.log('User cancelled home screen install'); | |
} else { | |
// インストールされた場合 | |
console.log('User added to home screen'); | |
} | |
deferredPrompt = null; | |
}); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment