Files
atom/src/window-bootstrap.coffee
Kevin Sawicki & Nathan Sobo 6480e956af Keep resident window state object
2013-06-28 04:39:26 -06:00

9 lines
244 B
CoffeeScript

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