Added comments

master
Abhinav Sarkar 2013-10-16 21:54:34 +05:30
parent e23843ad37
commit c4f1ae4d39
1 changed files with 6 additions and 6 deletions

View File

@ -4,14 +4,14 @@
[domina.events :as ev]) [domina.events :as ev])
(:require-macros [frpong.core :refer (go go-loop rd wt)])) (:require-macros [frpong.core :refer (go go-loop rd wt)]))
;; > `signal` creates a new signal ;; * `signal` creates a new signal
;; > `keyboard`, `ticks` and `dom-events` create signals for keydown events, browser animation ticks and ;; * `keyboard`, `ticks` and `dom-events` create signals for keydown events, browser animation ticks and
;; JS DOM events repectively ;; JS DOM events repectively
;; > `mult` creates a mult(iple) of a signal which can then be tapped using `tap` to create a copy of the ;; * `mult` creates a mult(iple) of a signal which can then be tapped using `tap` to create a copy of the
;; original signal ;; original signal
;; > `rd` reads the current value of a signal ;; * `rd` reads the current value of a signal
;; > `wt` sets the current value of a signal to the provided value ;; * `wt` sets the current value of a signal to the provided value
;; > `go` and `go-loop` start and run a component ;; * `go` and `go-loop` start and run a component
;; Signal Diagram ;; Signal Diagram
;; ;;