diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-06-05 16:44:35 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-06-05 16:44:35 +0200 |
commit | bf33799377eab662f8f25365cf15f57cf6697947 (patch) | |
tree | 064e960000b124b1c3089b4a14497636d196f387 /program/js/app.js | |
parent | 3445ca1a4fbfa7a141872ecf1a5f59649b101ec9 (diff) |
Navigate with arrow keys only in treelist widgets; fix keyboard event detection in IE; new text label to help screen readers
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/program/js/app.js b/program/js/app.js index 6d66aa2c0..ddc7b2f4b 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1669,6 +1669,9 @@ function rcube_webmail() var target = e.target || {}, keyCode = rcube_event.get_keycode(e); + // save global reference for keyboard detection on click events in IE + rcube_event._last_keyboard_event = e; + if (e.keyCode != 27 && (!this.menu_keyboard_active || target.nodeName == 'TEXTAREA' || target.nodeName == 'SELECT')) { return true; } |