diff --git a/src/browser/js/notification.js b/src/browser/js/notification.js index eef0c4be..f893d879 100644 --- a/src/browser/js/notification.js +++ b/src/browser/js/notification.js @@ -4,7 +4,7 @@ function override(eventHandlers) { Notification = function(title, options) { this.notification = new OriginalNotification(title, options); if (eventHandlers.notification) { - eventHandlers.notification(); + eventHandlers.notification(title, options); } };