Files
atom/docs/api.coffee
Chris Wanstrath 8409604108 tweak api
2011-09-04 13:34:26 -07:00

29 lines
306 B
CoffeeScript

# API Ideas
#
# Chrome
#
# Our view hierarchy is:
#
# App has many Windows
# Window has many Panes
# Window has one Document
App =
windows: []
activeWindow: null
class Window
panes: []
activePane: null
class Pane
window: null
document: null
class Document
window: null
pane: null