Merge pull request #340 from VikasShashidhar/Electron-430

ELECTRON-430: Enable context isolation
This commit is contained in:
Vikas Shashidhar 2018-05-03 12:09:20 +05:30 committed by GitHub
commit 77999b3a87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 6 additions and 0 deletions

View File

@ -20,6 +20,7 @@ let windowConfig = {
titleBarStyle: true,
resizable: false,
webPreferences: {
contextIsolation: true,
preload: path.join(__dirname, 'renderer.js'),
sandbox: true,
nodeIntegration: false

View File

@ -23,6 +23,7 @@ let windowConfig = {
titleBarStyle: true,
resizable: false,
webPreferences: {
contextIsolation: true,
preload: path.join(__dirname, 'renderer.js'),
sandbox: true,
nodeIntegration: false

View File

@ -24,6 +24,7 @@ let windowConfig = {
resizable: false,
alwaysOnTop: true,
webPreferences: {
contextIsolation: true,
preload: path.join(__dirname, 'renderer.js'),
sandbox: true,
nodeIntegration: false

View File

@ -136,6 +136,7 @@ let config = {
transparent: true,
acceptFirstMouse: true,
webPreferences: {
contextIsolation: true,
preload: path.join(__dirname, 'electron-notify-preload.js'),
sandbox: sandboxed,
nodeIntegration: isNodeEnv

View File

@ -27,6 +27,7 @@ let windowConfig = {
autoHideMenuBar: true,
resizable: false,
webPreferences: {
contextIsolation: true,
preload: path.join(__dirname, 'configure-notification-position-preload.js'),
sandbox: sandboxed,
nodeIntegration: false

View File

@ -140,6 +140,7 @@ function doCreateMainWindow(initialUrl, initialBounds, isCustomTitleBar) {
alwaysOnTop: false,
webPreferences: {
sandbox: sandboxed,
contextIsolation: true,
nodeIntegration: isNodeEnv,
preload: preloadMainScript,
nativeWindowOpen: true