OLD | NEW |
---|---|
(Empty) | |
1 <html> | |
2 <head> | |
3 <title>Web app banner test page</title> | |
4 <link rel="manifest" href="manifest.json" /> | |
5 <script src="main.js"></script> | |
6 <script> | |
7 window.addEventListener('beforeinstallprompt', function(e) { | |
8 console.log('Preventing banner from appearing'); | |
9 e.preventDefault(); | |
10 }); | |
11 </script> | |
12 </head> | |
13 <body onload="initialize()">Cancels the banner.</body> | |
14 </html> | |
OLD | NEW |