10 lines
259 B
HTML
10 lines
259 B
HTML
|
<html>
|
||
|
<script type="text/javascript" charset="utf-8">
|
||
|
const {ipcRenderer} = require('electron')
|
||
|
|
||
|
window.addEventListener('resize', () => {
|
||
|
ipcRenderer.send('webview-guest-resize', window.innerWidth, window.innerHeight)
|
||
|
}, false);
|
||
|
</script>
|
||
|
</html>
|