12 lines
341 B
HTML
12 lines
341 B
HTML
|
<html>
|
||
|
<body>
|
||
|
<script type="text/javascript" charset="utf-8">
|
||
|
const {ipcRenderer} = require('electron')
|
||
|
ipcRenderer.send('pong', document.visibilityState, document.hidden)
|
||
|
document.addEventListener('visibilitychange', function () {
|
||
|
ipcRenderer.send('pong', document.visibilityState, document.hidden)
|
||
|
})
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|