OS: macOS High Sierra
Electron: v6.1.7
Notifications (Main process) work perfectly on Mac EXCEPT they don't seem to emit events.
const n = new Notification({
body: 'Lorem Ipsum Dolor Sit Amet'
});
console.log(n.eventNames()) // displays []
n.on("click", () => {
// Doesn't work
console.log('Notification clicked')
app.quit();
});
n.show();
I am only running on Dev.
OS: macOS High Sierra
Electron: v6.1.7
Notifications (Main process) work perfectly on Mac EXCEPT they don't seem to emit events.
I am only running on Dev.