18 lines
335 B
HTML
18 lines
335 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title></title>
|
||
|
<script>
|
||
|
const {remote} = require('electron')
|
||
|
const browserWindow = remote.getCurrentWindow()
|
||
|
|
||
|
browserWindow.webContents.on('remote-handler', () => { })
|
||
|
browserWindow.reload()
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
</body>
|
||
|
</html>
|