- Commit
- b510c424c2fc389f99bca3dab0039e5170efdcb7
- Parent
- ed71000999c85f11fe3861e7ac2a02faedbf310a
- Author
- John MacFarlane <jgm@berkeley.edu>
- Date
Dingus: REALLY make tab insert tab in text box.
My personal build of CMark ✏️
Dingus: REALLY make tab insert tab in text box.
1 file changed, 1 insertion, 0 deletions
Status | File Name | N° Changes | Insertions | Deletions |
Modified | dingus.html | 1 | 1 | 0 |
diff --git a/dingus.html b/dingus.html @@ -74,6 +74,7 @@ $(document).ready(function() { $("#text").keydown(function (e) { if (e.which == 9) { e.preventDefault(); + this.value += "\t"; } }); parseAndRender();