fixing some bugs in the design doc

This commit is contained in:
Danny Yoo 2011-08-18 11:10:10 -04:00
parent 0438950e28
commit 571ccf13bf

View File

@ -322,10 +322,10 @@ hide.
;; tick: world view -> world ;; tick: world view -> world
(define (tick w v) (define (tick w v)
w) (add1 w))
(big-bang 0 ;; don't care about the world value (big-bang 0
(initial-view index.html) (initial-view index.html)
(on-tick tick 1) (on-tick tick 1)
(to-draw draw)) (to-draw draw))
@ -403,7 +403,7 @@ always refocus the view to the top:
The content of a view may be functionally queried or updated: The content of a view may be functionally queried or updated:
view-text: view string -> view update-view-text: view string -> view
Replace the text at the focus with the given string. Replace the text at the focus with the given string.
@ -412,7 +412,7 @@ The content of a view may be functionally queried or updated:
Grab at the text of the currently focused nodes. Grab at the text of the currently focused nodes.
view-css: view string string -> view update-view-css: view string string -> view
Update the CSS style value of the currently focused node. Update the CSS style value of the currently focused node.
view-css: view string -> view view-css: view string -> view
@ -421,7 +421,7 @@ The content of a view may be functionally queried or updated:
view-attr: view string string -> view update-view-attr: view string string -> view
Update the attribute of the currently focused node. Update the attribute of the currently focused node.
view-attr: view string -> view view-attr: view string -> view