diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-10-27 13:04:43 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-10-27 13:04:43 -0700 |
commit | b510c424c2fc389f99bca3dab0039e5170efdcb7 (patch) | |
tree | b093372712f9483c2b97868b6321da9ec4d357fe | |
parent | ed71000999c85f11fe3861e7ac2a02faedbf310a (diff) |
Dingus: REALLY make tab insert tab in text box.
-rw-r--r-- | dingus.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dingus.html b/dingus.html index 5f91523..6f9193b 100644 --- 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(); |