123456789101112 |
- <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>
|