Files
atom/src/window-bootstrap.coffee
probablycorey 09ab319328 Atom.show no longer used
The window is shown automatically when it is created.
2013-05-16 14:19:53 -07:00

9 lines
236 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.startEditorWindow()
console.log "Load time: #{new Date().getTime() - date}"