Skip to content

User's Guide

PieterHering edited this page Feb 18, 2021 · 1 revision

let deferredPrompt;

window.addEventListener('beforeinstallprompt', (e) => { // Prevent the mini-infobar from appearing on mobile e.preventDefault(); // Stash the event so it can be triggered later. deferredPrompt = e; // Update UI notify the user they can install the PWA showInstallPromotion(); });