Files
atom/src/window-bootstrap.coffee

10 lines
268 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()
setTimeout((-> atom.show()), 0)
console.log "Load time: #{new Date().getTime() - date}"