mirror of
https://github.com/atom/atom.git
synced 2026-01-25 14:59:03 -05:00
10 lines
312 B
CoffeeScript
10 lines
312 B
CoffeeScript
# Like sands through the hourglass, so are the days of our lives.
|
|
date = new Date().getTime()
|
|
require 'atom'
|
|
require 'window'
|
|
|
|
pathToOpen = atom.getWindowState('pathToOpen') ? window.location.params.pathToOpen
|
|
window.attachRootView(pathToOpen)
|
|
atom.show()
|
|
console.log "Load time: #{new Date().getTime() - date}"
|