2013-04-15 07:39:54 +00:00
|
|
|
var atom = require('atom');
|
2013-04-17 12:05:43 +00:00
|
|
|
var Window = require('window');
|
|
|
|
|
|
|
|
var mainWindow = null;
|
2013-04-15 07:39:54 +00:00
|
|
|
|
|
|
|
atom.browserMainParts.preMainMessageLoopRun = function() {
|
2013-04-17 12:05:43 +00:00
|
|
|
mainWindow = new Window({ width: 800, height: 600 });
|
2013-04-18 07:09:53 +00:00
|
|
|
mainWindow.loadURL('file://' + __dirname + '/index.html');
|
2013-04-15 07:39:54 +00:00
|
|
|
}
|