Updated class layout.

This commit is contained in:
Corey Johnson
2011-09-19 11:26:46 -07:00
parent 45b1f0ef64
commit 2b8a8a14c5

View File

@@ -5,11 +5,15 @@
# Chrome
#
# Our view hierarchy is:
# View hierarchy
#
# App has many Windows
# Window has many Panes
# Window has one Document
# App: has many Windows
# Window: has many Panes, contains a Document model
# Pane: has 0 or more Panes
#
# Model hieerarcy
#
# Document: holds all the data!
App =
windows: []
@@ -17,12 +21,13 @@ App =
class Window
panes: []
document: null
activePane: null
class Pane
subPanes: []
window: null
document: null
activeSubPane: null
class Document
window: null
pane: null