summaryrefslogtreecommitdiff
path: root/dingus.html
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-10-27 13:04:43 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2014-10-27 13:04:43 -0700
commitb510c424c2fc389f99bca3dab0039e5170efdcb7 (patch)
treeb093372712f9483c2b97868b6321da9ec4d357fe /dingus.html
parented71000999c85f11fe3861e7ac2a02faedbf310a (diff)
Dingus: REALLY make tab insert tab in text box.
Diffstat (limited to 'dingus.html')
-rw-r--r--dingus.html1
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();