diff options
| -rw-r--r-- | CHANGELOG | 3 | ||||
| -rw-r--r-- | program/js/app.js | 4 | 
2 files changed, 5 insertions, 2 deletions
| @@ -1,7 +1,7 @@  CHANGELOG RoundCube Webmail  =========================== -- Added Home/End kayboard keys support on lists (#1486430) +- Added PageUp/PageDown/Home/End keys support on lists (#1486430)  - Added possibility to select all messages in a folder (#1484756)  - Added 'imap_force_caps' option for after-login CAPABILITY checking (#1485750)  - Password: Support dovecotpw encryption @@ -69,7 +69,6 @@ CHANGELOG RoundCube Webmail  - Managesieve: Fix requires generation for multiple actions (#1486397)  - Fix LDAP problem with special characters in RDN (#1486320)  - Improved handling of message parts of type message/rfc822 -- Updated TinyMCE to 3.2.7  - Plugin API: added 'quota' hook  - Fix parsing conditional comments in HTML messages (#1486350)  - Use built-in json_encode() for proper JSON format in AJAX replies diff --git a/program/js/app.js b/program/js/app.js index 5e5bfe06f..a9838bc57 100644 --- a/program/js/app.js +++ b/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;      }; | 
