hide the drive's contextmenu when you hit escape

pull/1/head
ansuz 2020-06-05 13:32:56 -04:00
parent c8f7c96cfc
commit 154a0b1e6e
1 changed files with 7 additions and 0 deletions

View File

@ -526,6 +526,8 @@ define([
}
});
});
return $(menu);
};
@ -919,6 +921,11 @@ define([
if (e.ctrlKey) { ev.ctrlKey = true; }
if (e.shiftKey) { ev.shiftKey = true; }
// ESC
if (e.which === 27) {
return void APP.hideMenu();
}
// Enter
if (e.which === 13) {
var $allSelected = $content.find('.cp-app-drive-element.cp-app-drive-element-selected');