Skip to content

Instantly share code, notes, and snippets.

@vldvel
Created March 14, 2018 13:18
Show Gist options
  • Save vldvel/9ead7bc71af65de3c75a4d06a5455fbd to your computer and use it in GitHub Desktop.
Save vldvel/9ead7bc71af65de3c75a4d06a5455fbd to your computer and use it in GitHub Desktop.
Notification permission
switch (Notification.permission) {
case 'granted': {
new Notification('Hello world!');
break;
}
case 'denied': {
alert('No notification for you!');
break;
}
case 'default': {
Notification.requestPermission();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment