Fix dropdown losing focus when navigating w/ the keyboard
This commit is contained in:
parent
672e8359e4
commit
66c4b9a3da
|
@ -32,9 +32,12 @@
|
||||||
*/
|
*/
|
||||||
function clearFocus(e) {
|
function clearFocus(e) {
|
||||||
var $dropdown = $(this);
|
var $dropdown = $(this);
|
||||||
if ($(e.target).is($dropdown.find('a').last())) {
|
// Timeout is required to wait for the next element in the DOM to receive focus
|
||||||
|
setTimeout(function() {
|
||||||
|
if (! $.contains($dropdown[0], document.activeElement)) {
|
||||||
$dropdown.removeClass('active');
|
$dropdown.removeClass('active');
|
||||||
}
|
}
|
||||||
|
}, 10);
|
||||||
}
|
}
|
||||||
|
|
||||||
Icinga.Behaviors = Icinga.Behaviors || {};
|
Icinga.Behaviors = Icinga.Behaviors || {};
|
||||||
|
|
Loading…
Reference in New Issue