Skip to content

Instantly share code, notes, and snippets.

@nim4n136
Created June 14, 2020 16:35
Show Gist options
  • Save nim4n136/162bc75ec82c44458b2471ab04279494 to your computer and use it in GitHub Desktop.
Save nim4n136/162bc75ec82c44458b2471ab04279494 to your computer and use it in GitHub Desktop.
Notification browser
function notifyMe() {
// Let's check if the browser supports notifications
if (!("Notification" in window)) {
alert("This browser does not support desktop notification");
}
// Let's check if the user is okay to get some notification
else if (Notification.permission === "granted") {
// If it's okay let's create a notification
var notification = new Notification("Hi there!");
}
// Otherwise, we need to ask the user for permission
// Note, Chrome does not implement the permission static property
// So we have to check for NOT 'denied' instead of 'default'
else if (Notification.permission !== 'denied') {
Notification.requestPermission(function (permission) {
// Whatever the user answers, we make sure we store the information
if(!('permission' in Notification)) {
Notification.permission = permission;
}
// If the user is okay, let's create a notification
if (permission === "granted") {
var notification = new Notification("Hi there!");
}
});
} else {
alert(`Permission is ${Notification.permission}`);
}
// At last, if the user already denied any notification, and you
// want to be respectful there is no need to bother him any more.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment