Created
March 15, 2018 12:15
-
-
Save vldvel/9d1a0ab44566ac9da83266539ddf762e to your computer and use it in GitHub Desktop.
Notification close simple
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 notification = new Notification('Hello world!'); | |
setTimeout(() => { | |
notification.close(); | |
}, 600); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment