12 lines
204 B
HTML
12 lines
204 B
HTML
|
<html>
|
||
|
<body>
|
||
|
<script type="text/javascript" charset="utf-8">
|
||
|
const {ipcRenderer} = require('electron')
|
||
|
|
||
|
process.on('exit', () => {
|
||
|
ipcRenderer.send('SENT_ON_EXIT')
|
||
|
})
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|