-
Notifications
You must be signed in to change notification settings - Fork 32
Open
Labels
Description
The onclick property of a notification instance doesn't work.
let Notification = require('node-mac-notifier');
let n = new Notification('test');
n.onclick = function() { console.log('onclick'); };
n.addEventListener('click', () => { console.log('event listener'); });The addEventListener callback gets called but not the onclick.