Files
atom/src/window-bootstrap.coffee
Corey Johnson & Nathan Sobo 5c1fb99037 Requiring window no longer has no side-effects
Call window.setUpEnvironment instead.
2013-02-20 11:44:39 -08:00

10 lines
238 B
CoffeeScript

# Like sands through the hourglass, so are the days of our lives.
date = new Date().getTime()
require 'atom'
require 'window'
window.setUpEnvironment()
window.startup()
atom.show()
console.log "Load time: #{new Date().getTime() - date}"