summaryrefslogtreecommitdiff
path: root/js/index.html
diff options
context:
space:
mode:
authorKārlis Gaņģis <Knagis@users.noreply.github.com>2014-10-08 11:02:43 +0300
committerKārlis Gaņģis <Knagis@users.noreply.github.com>2014-10-08 11:02:43 +0300
commit43b8646d444d6828014bdd38df956f5871d60efe (patch)
tree66a1b9f6bd38822ee0c01a097ba7465157a5480c /js/index.html
parent3567b844ca1fd7bec62801f8758545f7bd5cbaae (diff)
parentdaeb55edc7636deebc2a79621ea06c3548d67827 (diff)
Merge pull request #1 from jgm/master
merge
Diffstat (limited to 'js/index.html')
-rw-r--r--js/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/index.html b/js/index.html
index 994b147..05fc216 100644
--- a/js/index.html
+++ b/js/index.html
@@ -52,7 +52,7 @@ $(document).ready(function() {
render();
}, 0); // ms delay
};
- $("#text").keyup(parseAndRender);
+ $("#text").bind('keyup paste cut mouseup', parseAndRender);
$(".option").change(render);
});
</script>