From f4e7ae74e42be4b27a4e78a7b4cf743210ad8f0d Mon Sep 17 00:00:00 2001 From: alec Date: Thu, 25 Mar 2010 18:26:19 +0000 Subject: - Use PageUp/PageDown for listpage change (#1486430) git-svn-id: https://svn.roundcube.net/trunk@3421 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/js/app.js | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'roundcubemail/program') 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; }; -- cgit v1.2.3