-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.js
30 lines (25 loc) · 989 Bytes
/
install.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
console.log('Check if installable');
window.addEventListener('beforeinstallprompt', evt => {
// CODELAB: Add code to save event & show the install button.
let deferredInstallPrompt = evt;
console.log('Can be installed', evt);
let installButton = document.getElementById('install');
if(installButton) installButton.addEventListener("click", evt => {
// CODELAB: Add code show install prompt & hide the install button.
deferredInstallPrompt.prompt();
// Hide the install button, it can't be called twice.
evt.srcElement.setAttribute('hidden', true);
});
installButton.removeAttribute('hidden');
deferredInstallPrompt.userChoice.then((choice) => {
if (choice.outcome === 'accepted') {
console.log('User accepted the A2HS prompt', choice);
} else {
console.log('User dismissed the A2HS prompt', choice);
}
deferredInstallPrompt = null;
});
});
window.addEventListener('appinstalled', evt => {
console.log('App installed');
});