summaryrefslogtreecommitdiff
path: root/roundcubemail/program
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-03-25 18:26:19 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-03-25 18:26:19 +0000
commitf4e7ae74e42be4b27a4e78a7b4cf743210ad8f0d (patch)
tree00d35b73123a79cd02f0b91be30df6f6ab84f940 /roundcubemail/program
parentd24b670fb32309f9acab6e5266f981c8958c4a1b (diff)
- Use PageUp/PageDown for listpage change (#1486430)
git-svn-id: https://svn.roundcube.net/trunk@3421 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
-rw-r--r--roundcubemail/program/js/app.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index 5e5bfe06f..a9838bc57 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/program/js/app.js
@@ -1456,6 +1456,10 @@ function rcube_webmail()
this.command('delete');
else if (list.key_pressed == list.BACKSPACE_KEY)
this.command('delete');
+ else if (list.key_pressed == 33)
+ this.command('previouspage');
+ else if (list.key_pressed == 34)
+ this.command('nextpage');
else
list.shiftkey = false;
};