2019-06-11 23:35:58 +00:00
|
|
|
<script>
|
2021-04-21 17:55:17 +00:00
|
|
|
const child = window.open(`./window-open-postMessage.html`, '', 'show=no,nodeIntegration=yes,contextIsolation=no')
|
2019-06-11 23:35:58 +00:00
|
|
|
window.onmessage = (e) => {
|
|
|
|
if (e.data === 'ready') {
|
|
|
|
child.postMessage('testing', '*')
|
|
|
|
} else {
|
|
|
|
require('electron').ipcRenderer.send('complete', {eventOrigin: e.origin, ...JSON.parse(e.data)})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|