Created
August 4, 2015 19:00
-
-
Save SomeKay/44b5de344405860026ea to your computer and use it in GitHub Desktop.
main.js with browser definitions for the sound machine
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var app = require('app'); | |
var BrowserWindow = require('browser-window'); | |
var mainWindow = null; | |
app.on('ready', function() { | |
mainWindow = new BrowserWindow({ | |
frame: false, | |
height: 700, | |
resizable: false, | |
width: 368 | |
}); | |
mainWindow.loadUrl('file://' + __dirname + '/app/index.html'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is outdated Electron syntax. For electron prebuilt 0.30.3: