diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-01-01 11:04:09 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-01-01 11:04:09 -0500 |
commit | 5311577e153580fc5dce3671b47cc49bdfd8e1e9 (patch) | |
tree | a5d174cb097382c951b69390af2fe978a3c35b68 /jslib | |
parent | fdcba593de74be15f49d299084829613dda90463 (diff) |
Reactive record pattern
Diffstat (limited to 'jslib')
-rw-r--r-- | jslib/urweb.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jslib/urweb.js b/jslib/urweb.js index fec37d1b..904e27e8 100644 --- a/jslib/urweb.js +++ b/jslib/urweb.js @@ -2,7 +2,7 @@ function cons(v, ls) { return { n : ls, v : v }; } function callAll(ls) { - for (; ls; ls = ls.next) + for (; ls; ls = ls.n) ls.v(); } |