summaryrefslogtreecommitdiff
path: root/program/js/app.js
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2014-06-05 16:44:35 +0200
committerThomas Bruederli <thomas@roundcube.net>2014-06-05 16:44:35 +0200
commitbf33799377eab662f8f25365cf15f57cf6697947 (patch)
tree064e960000b124b1c3089b4a14497636d196f387 /program/js/app.js
parent3445ca1a4fbfa7a141872ecf1a5f59649b101ec9 (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.js3
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;
}