2016-09-26 20:40:45 +00:00
|
|
|
(function () {
|
2017-03-21 13:48:36 +00:00
|
|
|
const {setImmediate} = require('timers')
|
2016-09-26 20:40:45 +00:00
|
|
|
const {ipcRenderer} = require('electron')
|
|
|
|
window.ipcRenderer = ipcRenderer
|
2017-03-21 13:48:36 +00:00
|
|
|
window.setImmediate = setImmediate
|
2016-09-26 20:40:45 +00:00
|
|
|
if (location.protocol === 'file:') {
|
|
|
|
window.test = 'preload'
|
|
|
|
window.require = require
|
|
|
|
window.process = process
|
|
|
|
} else if (location.href !== 'about:blank') {
|
|
|
|
addEventListener('DOMContentLoaded', () => {
|
|
|
|
ipcRenderer.send('child-loaded', window.opener == null, document.body.innerHTML)
|
|
|
|
}, false)
|
|
|
|
}
|
|
|
|
})()
|