2017-06-27 22:38:44 +02:00
|
|
|
const electron = require('electron');
|
|
|
|
const app = electron.app;
|
|
|
|
|
|
|
|
app.setName('electron-tabs-demo');
|
|
|
|
|
|
|
|
app.on('ready', function () {
|
2020-02-04 11:13:57 +01:00
|
|
|
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();
|
|
|
|
mainWindow.focus();
|
|
|
|
});
|
2017-06-27 22:38:44 +02:00
|
|
|
});
|