diff options
Diffstat (limited to 'js')
-rw-r--r-- | js/index.html | 2 | ||||
-rwxr-xr-x | js/stmd.js | 2 |
2 files changed, 2 insertions, 2 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> @@ -1,4 +1,4 @@ -// stmd.js - CommomMark in javascript +// stmd.js - CommonMark in javascript // Copyright (C) 2014 John MacFarlane // License: BSD3. |