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-17 14:49:49 +00:00
|
|
|
|
|
|
|
setTimeout(function() {
|
|
|
|
mainWindow.destroy();
|
|
|
|
}, 10000);
|
2013-04-15 07:39:54 +00:00
|
|
|
}
|