Last active
March 15, 2018 12:09
-
-
Save vldvel/226a269464f760f11273ebb506ea0349 to your computer and use it in GitHub Desktop.
Notification with options
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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