Add missing args

This commit is contained in:
Yuya Ochiai
2016-03-01 23:32:09 +09:00
parent 695c091bac
commit 90f9d3ec89

View File

@@ -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);
}
};