d44a187d0b
Co-authored-by: Cheng Zhao <zcbenz@gmail.com> Co-authored-by: Milan Burda <milan.burda@gmail.com>
13 lines
398 B
JavaScript
13 lines
398 B
JavaScript
const { ipcRenderer, webFrame } = require('electron');
|
|
|
|
setImmediate(function () {
|
|
if (window.location.toString() === 'bar://page/') {
|
|
const windowOpenerIsNull = window.opener == null;
|
|
ipcRenderer.send('answer', {
|
|
nodeIntegration: webFrame.getWebPreference('nodeIntegration'),
|
|
typeofProcess: typeof global.process,
|
|
windowOpenerIsNull
|
|
});
|
|
window.close();
|
|
}
|
|
});
|