From d58ec4d3f64eaeffb9e024a44f8b1634c97ba336 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Mon, 3 Jun 2013 13:23:16 -0700 Subject: [PATCH] Show window from bootstrap script --- spec/spec-bootstrap.coffee | 1 + src/atom-application.coffee | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/spec/spec-bootstrap.coffee b/spec/spec-bootstrap.coffee index 765971563..410262423 100644 --- a/spec/spec-bootstrap.coffee +++ b/spec/spec-bootstrap.coffee @@ -1,5 +1,6 @@ try require 'atom' + atom.show() {runSpecSuite} = require 'jasmine-helper' document.title = "Spec Suite" diff --git a/src/atom-application.coffee b/src/atom-application.coffee index 186443828..c607c3e24 100644 --- a/src/atom-application.coffee +++ b/src/atom-application.coffee @@ -258,8 +258,6 @@ class AtomApplication exitWhenDone: exitWhenDone isSpec: true - specWindow.show() - promptForPath: -> pathsToOpen = dialog.showOpenDialog title: 'Open', properties: ['openFile', 'openDirectory', 'multiSelections', 'createDirectory'] @openPaths(pathsToOpen)