mirror of https://github.com/electron/electron
12 lines
320 B
HTML
12 lines
320 B
HTML
<html>
|
|
<body>
|
|
<script type="text/javascript" charset="utf-8">
|
|
var windowUrl = decodeURIComponent(window.location.search.substring(3))
|
|
window.open('file://' + windowUrl, '', 'nodeIntegration=yes,show=no')
|
|
addEventListener("message", (ev) => {
|
|
console.log(JSON.stringify(ev.data))
|
|
})
|
|
</script>
|
|
</body>
|
|
</html>
|