From bf33799377eab662f8f25365cf15f57cf6697947 Mon Sep 17 00:00:00 2001 From: Thomas Bruederli Date: Thu, 5 Jun 2014 16:44:35 +0200 Subject: Navigate with arrow keys only in treelist widgets; fix keyboard event detection in IE; new text label to help screen readers --- program/js/app.js | 3 +++ 1 file changed, 3 insertions(+) (limited to 'program/js/app.js') 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; } -- cgit v1.2.3