Skip to content

Instantly share code, notes, and snippets.

@vldvel
Last active March 15, 2018 12:09
Show Gist options
  • Save vldvel/226a269464f760f11273ebb506ea0349 to your computer and use it in GitHub Desktop.
Save vldvel/226a269464f760f11273ebb506ea0349 to your computer and use it in GitHub Desktop.
Notification with options
const notificationTitle = 'I\'m notification'; // string
const notificationOptions = {
tag: 'notification', // tag for notification
renotify: true, // defalt false, renotifying after old notification
body: 'Here is my desription', // description under title
icon: 'https://avatars1.githubusercontent.com/u/22643415', // image URL
vibrate: [50, 100, 150] // vibration on notification
}
new Notification(notificationTitle, notificationOptions);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment