summaryrefslogtreecommitdiff
path: root/roundcubemail/program/js/app.js
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-03-14 14:30:41 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-03-14 14:30:41 +0000
commit2ed0e92958d6cbcd92e1c0a8865aae6ec2bffa39 (patch)
tree6e60fc0835680d21766d6c12f6ba9454282448bf /roundcubemail/program/js/app.js
parentfd36420a41a528a249cefa358c4020b08e33e45e (diff)
- Fix bug where it wasn't possible to enter ( or & characters in autocomplete fields
git-svn-id: https://svn.roundcube.net/trunk@6009 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js/app.js')
-rw-r--r--roundcubemail/program/js/app.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index 3b2a14809..40cca700e 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/program/js/app.js
@@ -3628,9 +3628,9 @@ function rcube_webmail()
mod = rcube_event.get_modifier(e);
switch (key) {
- case 38: // key up
- case 40: // key down
- if (!this.ksearch_pane)
+ case 38: // arrow up
+ case 40: // arrow down
+ if (!this.ksearch_visible())
break;
var dir = key==38 ? 1 : 0;