2017-04-30 09:53:31 +00:00
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
2017-05-24 18:30:25 +00:00
|
|
|
const {ipcRenderer} = window.top != null ? window.top.require('electron') : require('electron')
|
2017-04-30 10:43:21 +00:00
|
|
|
const popup = window.open()
|
|
|
|
popup.document.write('<h1>Hello</h1>')
|
|
|
|
const content = popup.document.querySelector('h1').innerText
|
|
|
|
ipcRenderer.send('answer', content)
|
2017-04-30 09:53:31 +00:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|