code style

This commit is contained in:
Feross Aboukhadijeh
2016-03-07 19:36:08 -08:00
parent 8ab2a1415b
commit 7c68be4fd4
2 changed files with 7 additions and 8 deletions

View File

@@ -1,13 +1,14 @@
var windows = module.exports = {
main: null,
createMainWindow: createMainWindow
}
var config = require('../config')
var debug = require('debug')('webtorrent-app:windows')
var electron = require('electron')
var app = electron.app
var windows = {
main: null,
createMainWindow: createMainWindow
}
var isQuitting = false
app.on('before-quit', function () {
@@ -55,5 +56,3 @@ function createMainWindow (menu) {
windows.main = null
})
}
module.exports = windows