diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-04-04 11:46:24 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-04-04 11:46:24 -0400 |
commit | e74f91d28381be3758a53da75985afa05a06680d (patch) | |
tree | 3979ccacac613495cad0e9aa5a76e8d8fba76b7b /lib/js | |
parent | 15c42e18c0a495205e6fe1dba35334b9b2914b71 (diff) |
Checking spans in dyns
Diffstat (limited to 'lib/js')
-rw-r--r-- | lib/js/urweb.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/js/urweb.js b/lib/js/urweb.js index d3c144b9..4a447a5b 100644 --- a/lib/js/urweb.js +++ b/lib/js/urweb.js @@ -154,6 +154,10 @@ function pfl(s) { throw "Can't parse float: " + s; } +function cat(s1, s2) { + return s1 + s2; +} + function whine(msg) { alert(msg); throw msg; |