summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2012-03-14 14:30:41 +0000
committeralecpl <alec@alec.pl>2012-03-14 14:30:41 +0000
commit6699a68da187285bc2ea1571d4ffa970f2075bd6 (patch)
treefa5cedf9b79e70be3cce881f40adf0aec67b27e6
parentff4c18f1fb860c959a3b8fa1948b1253fbb01b59 (diff)
- Fix bug where it wasn't possible to enter ( or & characters in autocomplete fields
-rw-r--r--CHANGELOG1
-rw-r--r--program/js/app.js6
2 files changed, 4 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 3cff1f45b..f8578160f 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
+- Fix bug where it wasn't possible to enter ( or & characters in autocomplete fields
- Request all needed fields from address book backends (#1488394)
- Unified (single) spellchecker button
- Scroll long lists on drag&drop (#1485946)
diff --git a/program/js/app.js b/program/js/app.js
index 3b2a14809..40cca700e 100644
--- a/program/js/app.js
+++ b/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;