mirror of
https://github.com/atom/atom.git
synced 2026-01-22 13:28:01 -05:00
11 lines
300 B
CoffeeScript
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"
|