1
0
mirror of https://github.com/moparisthebest/mail synced 2025-03-10 14:39:56 -04:00

Fix bug where notiifcation api is not supported

This commit is contained in:
Tankred Hase 2014-12-19 14:22:46 +01:00
parent 3cc0a372e1
commit b44d0a222a

View File

@ -58,5 +58,7 @@ Notif.prototype.create = function(options) {
};
Notif.prototype.close = function(notification) {
notification.close();
if (notification) {
notification.close();
}
};