diff options
| author | Alon Levy <alon@pobox.com> | 2014-10-24 12:44:21 +0300 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2014-10-24 12:44:55 +0300 |
| commit | 63d78b92f40c19bc6adeb4a016aed2319d1af70a (patch) | |
| tree | 101eee6622ab2d6944cedb830e427bae0c1bcbd9 /scripts | |
| parent | d1b2b184dd7747b21eb5f69439f2a4dd5c271cf7 (diff) | |
textanalysis.ui: shift-tab now changes type back, tab forward
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/textanalysis.ui.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/textanalysis.ui.js b/scripts/textanalysis.ui.js index 69f2e675..bafc5134 100644 --- a/scripts/textanalysis.ui.js +++ b/scripts/textanalysis.ui.js @@ -80,7 +80,7 @@ return { } if (e.keyCode == 9) {//TAB e.preventDefault(); - changeType("down", textanalysis.lastnode()); + changeType(e.shiftKey ? "up" : "down", textanalysis.lastnode()); return false; } |
