summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2014-09-09 13:59:07 -0700
committerJohn MacFarlane <fiddlosopher@gmail.com>2014-09-09 13:59:07 -0700
commit81de8a753da76566a52a1c8dd80e4d3784e78567 (patch)
treeb49991584d402f8e3e2324f27e509a9e2469a349 /js
parent58380f379f3fceb87c03fc8553bc100d0eccaa76 (diff)
Dingus: use bind('keyup paste cut mouseup'...
Modifies #98. (Generic 'change' by itself wasn't enough.)
Diffstat (limited to 'js')
-rw-r--r--js/index.html2
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>