2018-09-13 16:10:51 +00:00
|
|
|
const { ipcRenderer } = require('electron')
|
2017-07-10 23:59:49 +00:00
|
|
|
|
|
|
|
setImmediate(function () {
|
|
|
|
if (window.location.toString() === 'bar://page') {
|
|
|
|
ipcRenderer.send('answer', process.argv, typeof global.process)
|
|
|
|
window.close()
|
|
|
|
}
|
|
|
|
})
|