Default webviewTag to false

This commit is contained in:
Kevin Sawicki 2017-05-17 14:01:45 -07:00
parent 1a210ed114
commit a285a3e64b

View file

@ -54,10 +54,10 @@ electron.ipcRenderer.on('ELECTRON_INTERNAL_RENDERER_ASYNC_WEB_FRAME_METHOD', (ev
// Process command line arguments. // Process command line arguments.
let nodeIntegration = 'false' let nodeIntegration = 'false'
let webviewTag = 'false'
let preloadScript = null let preloadScript = null
let isBackgroundPage = false let isBackgroundPage = false
let appPath = null let appPath = null
let webviewTag = 'true'
for (let arg of process.argv) { for (let arg of process.argv) {
if (arg.indexOf('--guest-instance-id=') === 0) { if (arg.indexOf('--guest-instance-id=') === 0) {
// This is a guest web view. // This is a guest web view.