Merge pull request #79 from kanryu/master

fixes #76 add options nodeIntegration,webviewTag into the demo for over electron-5.0
This commit is contained in:
Thomas Brouard 2019-09-27 11:27:36 +02:00 committed by GitHub
commit 5a58070f1d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,7 +6,12 @@ app.setName('electron-tabs-demo');
app.on('ready', function () {
const mainWindow = new electron.BrowserWindow();
const mainWindow = new electron.BrowserWindow({
webPreferences: {
nodeIntegration: true,
webviewTag: true
}
});
mainWindow.loadURL('file://' + __dirname + '/electron-tabs.html');
mainWindow.on('ready-to-show', function () {
mainWindow.show();