hyper/notify.html
2016-07-07 13:48:43 -07:00

5 lines
144 B
HTML

<script>
require('electron').ipcRenderer.on('notification', (ev, { title, body }) => {
new Notification(title, { body });
});
</script>