diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-03-14 14:30:41 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-03-14 14:30:41 +0000 |
| commit | 2ed0e92958d6cbcd92e1c0a8865aae6ec2bffa39 (patch) | |
| tree | 6e60fc0835680d21766d6c12f6ba9454282448bf /roundcubemail | |
| parent | fd36420a41a528a249cefa358c4020b08e33e45e (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')
| -rw-r--r-- | roundcubemail/CHANGELOG | 1 | ||||
| -rw-r--r-- | roundcubemail/program/js/app.js | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/roundcubemail/CHANGELOG b/roundcubemail/CHANGELOG index 3cff1f45b..f8578160f 100644 --- a/roundcubemail/CHANGELOG +++ b/roundcubemail/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/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; |
