2017-04-30 09:53:31 +00:00
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
2017-04-30 10:43:21 +00:00
|
|
|
const {ipcRenderer} = require('electron')
|
|
|
|
const popup = window.open('native-window-open-child.html')
|
2017-04-30 09:53:31 +00:00
|
|
|
popup.onload = () => {
|
2017-04-30 10:43:21 +00:00
|
|
|
const content = popup.document.querySelector('h1').innerText
|
|
|
|
ipcRenderer.send('answer', content)
|
|
|
|
}
|
2017-04-30 09:53:31 +00:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|