Fix indent

This commit is contained in:
Thomas Brouard 2020-02-04 11:13:57 +01:00
parent 0c3e547782
commit 0c0a724245
4 changed files with 463 additions and 466 deletions

View file

@ -3,9 +3,7 @@ const app = electron.app;
app.setName('electron-tabs-demo');
app.on('ready', function () {
const mainWindow = new electron.BrowserWindow({
webPreferences: {
nodeIntegration: true,
@ -17,5 +15,4 @@ app.on('ready', function () {
mainWindow.show();
mainWindow.focus();
});
});