summaryrefslogtreecommitdiff
path: root/frontend/start.js
blob: f760f1100ba1bf82f4774b60adcba53c8e7cb9d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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");