diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2014-09-09 13:59:07 -0700 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2014-09-09 13:59:07 -0700 |
commit | 81de8a753da76566a52a1c8dd80e4d3784e78567 (patch) | |
tree | b49991584d402f8e3e2324f27e509a9e2469a349 | |
parent | 58380f379f3fceb87c03fc8553bc100d0eccaa76 (diff) |
Dingus: use bind('keyup paste cut mouseup'...
Modifies #98. (Generic 'change' by itself wasn't enough.)
-rw-r--r-- | js/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/index.html b/js/index.html index 3c75b5c..05fc216 100644 --- a/js/index.html +++ b/js/index.html @@ -52,7 +52,7 @@ $(document).ready(function() { render(); }, 0); // ms delay }; - $("#text").change(parseAndRender); + $("#text").bind('keyup paste cut mouseup', parseAndRender); $(".option").change(render); }); </script> |