diff options
author | thomascube <thomas@roundcube.net> | 2011-08-29 20:01:39 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-08-29 20:01:39 +0000 |
commit | bd3891145b3f21adc8466de70bd8b7604c7801fe (patch) | |
tree | c16a1985fca3e554e0e3faf20732010fda0b4927 | |
parent | f7b58afb94ba5da1dd7b1e2fa7b67c398b4d3d1e (diff) |
Really abort autocompletion when hitting Escape
-rw-r--r-- | program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index b12d5c219..fbf3233f1 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -3507,7 +3507,7 @@ function rcube_webmail() case 27: // escape this.ksearch_hide(); - break; + return; case 37: // left case 39: // right |