diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-12-21 12:30:57 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-12-21 12:30:57 -0500 |
commit | d5c3faacb1c3114fe6802973a62528cda8be8ac7 (patch) | |
tree | 8193826346d3d4131730c22f1c5fb17eee1e0576 /jslib | |
parent | 0a3abbb2250da6464e91566a1f275829158d3058 (diff) |
Handling singnal bind
Diffstat (limited to 'jslib')
-rw-r--r-- | jslib/urweb.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/jslib/urweb.js b/jslib/urweb.js index b7a1af91..f552b26b 100644 --- a/jslib/urweb.js +++ b/jslib/urweb.js @@ -1,4 +1,5 @@ -function sreturn(v) { return {v : v} } +function sr(v) { return {v : v} } +function sb(x,y) { return {v : y(x.v).v} } function dyn(s) { var x = document.createElement("span"); |