hyper/notify.html

6 lines
144 B
HTML
Raw Permalink Normal View History

2016-07-07 12:48:43 -08:00
<script>
require('electron').ipcRenderer.on('notification', (ev, { title, body }) => {
new Notification(title, { body });
});
</script>