hide drawers on ESC keypresses

pull/1/head
ansuz 2020-05-26 16:22:45 -04:00
parent e998e77382
commit c34ea105f0
1 changed files with 5 additions and 0 deletions

View File

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