From 840960410844451b73313766880c6e07940b0189 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Sun, 4 Sep 2011 13:34:26 -0700 Subject: [PATCH] tweak api --- docs/api.coffee | 56 ++----------------------------------------------- 1 file changed, 2 insertions(+), 54 deletions(-) diff --git a/docs/api.coffee b/docs/api.coffee index f8e68412e..cd0990d3f 100644 --- a/docs/api.coffee +++ b/docs/api.coffee @@ -8,73 +8,21 @@ # Our view hierarchy is: # # App has many Windows -# Window has many Tabs -# Tab has many Panes -# Pane has one Document +# Window has many Panes +# Window has one Document App = windows: [] activeWindow: null class Window - tabs: [] - activeTab: null - -class Tab - window: null panes: [] activePane: null class Pane window: null - tab: null document: null -# Documents currently contain either -# an editor (ace) or browser (webview). class Document window: null - tab: null pane: null - editor: null - browser: null - - -# -# stdlib -# - -$ = jQuery -_ = Underscore - -# System functions based on http://nodejs.org/docs/v0.5.4/api/events.html - -# Globals: -# http://nodejs.org/docs/v0.5.4/api/globals.html -# (Everything except Buffer and process) - -# console: -# http://nodejs.org/docs/v0.5.4/api/stdio.html - -# timers: -# http://nodejs.org/docs/v0.5.4/api/timers.html - -# fs: -# http://nodejs.org/docs/v0.5.4/api/fs.html - -# path: -# http://nodejs.org/docs/v0.5.4/api/path.html - -# url: -# http://nodejs.org/docs/v0.5.4/api/url.html - -# querystring: -# http://nodejs.org/docs/v0.5.4/api/querystring.html - -# assert: -# http://nodejs.org/docs/v0.5.4/api/assert.html - -# child processes: -# http://nodejs.org/docs/v0.5.4/api/child_processes.html - -# events? \ No newline at end of file