blob: 5f9d9af49bbd28aa12af8389b97c17dcba5464d5 [file] [log] [blame]
<html>
<head>
<title>Web app banner test page</title>
<link rel="manifest" href="manifest.json" />
<script src="main.js"></script>
<script>
window.addEventListener('beforeinstallprompt', function(e) {
console.log('Preventing banner from appearing');
e.preventDefault();
// Navigate the window to trigger the banner cancellation.
window.location.href = "/";
});
</script>
</head>
<body onload="initialize()">Cancels the banner.</body>
</html>