diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-06-16 12:35:57 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-06-16 12:35:57 +0200 |
commit | 9749aeeb0bda83019c1872a72d438a19f9cb3085 (patch) | |
tree | d80ae2489f18c2021fcb5446417e3de57bfee846 /program/js | |
parent | 9c513f44a2f0ee212ca9b298a90582db19f269b3 (diff) |
Avoid scrolling of lists and menus when navigating with cursor keys (#1489929)
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/app.js | 2 | ||||
-rw-r--r-- | program/js/treelist.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/program/js/app.js b/program/js/app.js index ea7be4eac..82b69c4db 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1677,7 +1677,7 @@ function rcube_webmail() case 63232: // "up", in safari keypress case 63233: // "down", in safari keypress focus_menu_item(keyCode == 38 || keyCode == 63232 ? -1 : 1); - break; + return rcube_event.cancel(e); case 9: // tab if (this.focused_menu) { diff --git a/program/js/treelist.js b/program/js/treelist.js index ea1729806..1427c2480 100644 --- a/program/js/treelist.js +++ b/program/js/treelist.js @@ -739,7 +739,7 @@ function rcube_treelist_widget(node, p) if (li.length) { focus_next(li, (mod = keyCode == 38 || keyCode == 63232 ? -1 : 1)); } - break; + return rcube_event.cancel(e); case 37: // Left arrow key case 39: // Right arrow key |