2016-05-24 19:37:26 +00:00
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
|
|
const {ipcRenderer} = require('electron')
|
|
|
|
ipcRenderer.send('pong', document.visibilityState, document.hidden)
|
2023-07-28 08:48:25 +00:00
|
|
|
document.addEventListener('visibilitychange', () => {
|
|
|
|
ipcRenderer.send('pong', document.visibilityState, document.hidden)
|
2016-05-24 19:37:26 +00:00
|
|
|
})
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|