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