0b85fdf26c
Co-authored-by: Jeremy Rose <jeremya@chromium.org>
13 lines
379 B
HTML
13 lines
379 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 () {
|
|
setTimeout(() => {
|
|
ipcRenderer.send('pong', document.visibilityState, document.hidden)
|
|
}, 500);
|
|
})
|
|
</script>
|
|
</body>
|
|
</html>
|