blob: 4c860e530079dbc7c848c36d0fcc9eff0ecbe037 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
document.getElementById("startbtn").addEventListener("click", () => {
start();
});
startUpdateMachines();
const notbtn = document.getElementById("notbtn")
notbtn.addEventListener("click", () => requestPermission())
function requestPermission() {
console.log("Requesting permission...");
OneSignal.Notifications.requestPermission();
}
const notif = document.getElementById("notif-panel");
if (Notification.permission == 'granted') {
notif.remove();
}
|