Prevent new BrowserWindows from being created
This commit is contained in:
parent
559b2157d4
commit
96bbc9d738
1 changed files with 8 additions and 5 deletions
13
main.js
13
main.js
|
@ -293,9 +293,9 @@ function createWindow() {
|
||||||
|
|
||||||
captureClicks(mainWindow);
|
captureClicks(mainWindow);
|
||||||
|
|
||||||
mainWindow.webContents.on('will-navigate', e => {
|
mainWindow.webContents.on('will-navigate', event => {
|
||||||
logger.info('will-navigate');
|
logger.info('will-navigate');
|
||||||
e.preventDefault();
|
event.preventDefault();
|
||||||
});
|
});
|
||||||
|
|
||||||
// Emitted when the window is about to be closed.
|
// Emitted when the window is about to be closed.
|
||||||
|
@ -523,11 +523,14 @@ app.on('activate', () => {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// Defense in depth. We never intend to open webviews, so this prevents it completely.
|
// Defense in depth. We never intend to open webviews or windows. Prevent it completely.
|
||||||
app.on('web-contents-created', (createEvent, win) => {
|
app.on('web-contents-created', (createEvent, contents) => {
|
||||||
win.on('will-attach-webview', attachEvent => {
|
contents.on('will-attach-webview', attachEvent => {
|
||||||
attachEvent.preventDefault();
|
attachEvent.preventDefault();
|
||||||
});
|
});
|
||||||
|
contents.on('new-window', newEvent => {
|
||||||
|
newEvent.preventDefault();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
ipc.on('set-badge-count', (event, count) => {
|
ipc.on('set-badge-count', (event, count) => {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue