diff options
author | Adam Chlipala <adam@chlipala.net> | 2015-03-08 11:05:54 -0400 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2015-03-08 11:05:54 -0400 |
commit | d17d2ebc63e1e0a7caf3e3b79a500a754924dfef (patch) | |
tree | e73124e2a1d53f106816326b60ac28033b507669 /lib | |
parent | 2997e31da2e41b6f1ffeca09a976b739ff9846ea (diff) |
Fix dynClass JavaScript reversion
Diffstat (limited to 'lib')
-rw-r--r-- | lib/js/urweb.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/js/urweb.js b/lib/js/urweb.js index bd5109c3..8bb3dbe5 100644 --- a/lib/js/urweb.js +++ b/lib/js/urweb.js @@ -1200,7 +1200,7 @@ function dynClass(pnode, html, s_class, s_style) { x.dead = false; x.signal = s_class; x.sources = null; - x.closures = null; + x.closures = htmlCls; x.recreate = function(v) { for (var ls = x.closures; ls != htmlCls; ls = ls.next) |