cmark

My personal build of CMark ✏️

Commit
81de8a753da76566a52a1c8dd80e4d3784e78567
Parent
58380f379f3fceb87c03fc8553bc100d0eccaa76
Author
John MacFarlane <fiddlosopher@gmail.com>
Date

Dingus: use bind('keyup paste cut mouseup'...

Modifies #98. (Generic 'change' by itself wasn't enough.)

Diffstat

1 file changed, 1 insertion, 1 deletion

Status File Name N° Changes Insertions Deletions
Modified js/index.html 2 1 1
diff --git 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>