📝 Match variable names

[ci skip]
This commit is contained in:
Plusb Preco 2016-05-11 02:38:42 +09:00
parent 885aeec442
commit 5146befa46
6 changed files with 23 additions and 23 deletions

View file

@ -29,14 +29,14 @@ app.commandLine.appendSwitch('ppapi-flash-path', '/path/to/libpepflashplayer.so'
app.commandLine.appendSwitch('ppapi-flash-version', '17.0.0.169');
app.on('ready', () => {
mainWindow = new BrowserWindow({
win = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
plugins: true
}
});
mainWindow.loadURL(`file://${__dirname}/index.html`);
win.loadURL(`file://${__dirname}/index.html`);
// Something else
});
```