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)
|
|
|
|
document.addEventListener('visibilitychange', function () {
|
2020-11-10 17:06:03 +00:00
|
|
|
setTimeout(() => {
|
|
|
|
ipcRenderer.send('pong', document.visibilityState, document.hidden)
|
|
|
|
}, 500);
|
2016-05-24 19:37:26 +00:00
|
|
|
})
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|