Files
atom/src/window-bootstrap.coffee
Kevin Sawicki 29646cdff8 💄 Use Date.now
2013-10-24 18:58:43 -07:00

11 lines
280 B
CoffeeScript

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