we don't really need a webContents like that, so pass if needed

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2017-05-25 12:47:36 +01:00
parent c4c78c9b3e
commit 727e267853

View File

@ -1,8 +1,6 @@
const {clipboard, nativeImage, Menu, MenuItem, shell} = require('electron');
const url = require('url');
let webContents;
const PERMITTED_URL_SCHEMES = [
'http:',
'https:',
@ -108,9 +106,7 @@ function onEditableContextMenu(ev, params) {
}
module.exports = (_webContents) => {
webContents = _webContents;
module.exports = (webContents) => {
webContents.on('new-window', onWindowOrNavigate);
webContents.on('will-navigate', onWindowOrNavigate);