Skip to content

Instantly share code, notes, and snippets.

@davalapar
Forked from xemasiv/index.js
Created April 20, 2019 01:55
Show Gist options
  • Save davalapar/e536b49dd9c20851f5a014b0d8650d60 to your computer and use it in GitHub Desktop.
Save davalapar/e536b49dd9c20851f5a014b0d8650d60 to your computer and use it in GitHub Desktop.
Notifications
var n = new Notification('Connected', { body: 'Well done mate'} );
setTimeout(() => n.close(), 3000);
Notification.permission;
Notification.requestPermission().then(console.log).catch(console.error);
// https://developer.mozilla.org/en-US/docs/Web/API/notification
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment