diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-03-28 11:15:42 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-03-28 11:15:42 -0400 |
commit | 213564f740d896c9a8bd86b5e2221d9434b126d3 (patch) | |
tree | a8c3921d96def7a0b75f2579a9eca46258bf9c83 /lib/js/urweb.js | |
parent | 0168071775d98602c427b4b915fb6489cc2f10ff (diff) |
Switch back to starting listener on load
Diffstat (limited to 'lib/js/urweb.js')
-rw-r--r-- | lib/js/urweb.js | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/js/urweb.js b/lib/js/urweb.js index 39f9f7cf..c7cecbbf 100644 --- a/lib/js/urweb.js +++ b/lib/js/urweb.js @@ -300,17 +300,10 @@ function listener() { connect(); } -var listener_started = false; - function rv(chn, parse, k) { if (chn < 0) whine("Out-of-bounds channel receive"); - if (!listener_started) { - listener_started = true; - listener(); - } - var ch; if (chn >= channels.length || channels[chn] == null) { |