hide drawers on ESC keypresses

pull/1/head
ansuz 5 years ago
parent e998e77382
commit c34ea105f0

@ -1395,6 +1395,11 @@ define([
$content.hide();
};
$content.blur(onBlur).appendTo($button);
$('body').keydown(function (e) {
if (e.which === 27) {
$content.blur();
}
});
};
return UI;

Loading…
Cancel
Save