summaryrefslogtreecommitdiff
path: root/roundcubemail/program/js
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-06-03 11:02:19 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-06-03 11:02:19 +0000
commitc642577d0490c9cc01e383baddcb22a3ea11ffe0 (patch)
treead34a216a2b0002ab4f54b77a722d428bc0f53a4 /roundcubemail/program/js
parent113127b8f815e888eeab19e7fac2ad45b1287772 (diff)
- fix selecting repetition with holded arrow key (#1485672)
git-svn-id: https://svn.roundcube.net/trunk@2602 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js')
-rw-r--r--roundcubemail/program/js/list.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/js/list.js b/roundcubemail/program/js/list.js
index aa34546f4..f47040985 100644
--- a/roundcubemail/program/js/list.js
+++ b/roundcubemail/program/js/list.js
@@ -90,7 +90,7 @@ init: function()
// set body events
if (this.keyboard) {
- rcube_event.add_listener({element:document, event:'keyup', object:this, method:'key_press'});
+ rcube_event.add_listener({element:document, event:'keypress', object:this, method:'key_press'});
rcube_event.add_listener({element:document, event:'keydown', object:this, method:'key_down'});
}
}