blob: f80c567805b65bb5ece5cb5f0e7a2b3fc2d8668b (
plain)
1
2
3
4
5
6
7
8
9
|
const notif = document.getElementById("notif-panel");
const notbtn = document.getElementById("notbtn");
console.log("notbtn")
notbtn.addEventListener("click", () => requestPermission())
async function requestPermission() {
subscribe()
}
|