cmark

My personal build of CMark ✏️

Commit
ed71000999c85f11fe3861e7ac2a02faedbf310a
Parent
b77e606261c821883476aed2b856a594a642ecae
Author
John MacFarlane <jgm@berkeley.edu>
Date

Fixed tab fix in previous commit.

Diffstat

1 file changed, 1 insertion, 1 deletion

Status File Name N° Changes Insertions Deletions
Modified dingus.html 2 1 1
diff --git a/dingus.html b/dingus.html
@@ -71,7 +71,7 @@ $(document).ready(function() {
     $('#result-tabs a[href="#result"]').tab('show');
   }
   // make tab insert a tab in the text box:
-  $("#text").addEventListener('keydown', function (e) {
+  $("#text").keydown(function (e) {
     if (e.which == 9) {
         e.preventDefault();
     }