Files
atom/src/window-bootstrap.coffee
2013-10-02 13:40:34 -07:00

11 lines
300 B
CoffeeScript

# Like sands through the hourglass, so are the days of our lives.
startTime = new Date().getTime()
require './window'
Atom = require './atom'
window.atom = new Atom()
window.setUpEnvironment('editor')
window.startEditorWindow()
console.log "Window load time: #{new Date().getTime() - startTime}ms"