Skip to content

Instantly share code, notes, and snippets.

View SASFMONTOYA's full-sized avatar
🎯
Focusing

Fabian Dario Montoya SASFMONTOYA

🎯
Focusing
View GitHub Profile
@emilio
emilio / notification.js
Last active September 24, 2020 07:44
window.Notification polyfill
/*
* window.Notification polyfill
* @author Emilio Cobos (http://emiliocobos.net)
*/
/* try prefixed */
if( ! window.Notification ) {
window.Notification = (function() {
return window.Notification || window.webkitNotification || window.mozNotification || window.oNotification || window.msNotification;
})()