mirror of
https://github.com/atom/atom.git
synced 2026-01-24 06:18:03 -05:00
12 lines
327 B
CoffeeScript
12 lines
327 B
CoffeeScript
# Like sands through the hourglass, so are the days of our lives.
|
|
startTime = Date.now()
|
|
|
|
require './window'
|
|
|
|
Atom = require './atom'
|
|
window.atom = Atom.loadOrCreate('editor')
|
|
atom.initialize()
|
|
atom.startEditorWindow()
|
|
window.atom.loadTime = Date.now() - startTime
|
|
console.log "Window load time: #{atom.getWindowLoadTime()}ms"
|