From 2ed0e92958d6cbcd92e1c0a8865aae6ec2bffa39 Mon Sep 17 00:00:00 2001 From: alec Date: Wed, 14 Mar 2012 14:30:41 +0000 Subject: - 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 --- roundcubemail/program/js/app.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'roundcubemail/program') 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; -- cgit v1.2.3