escape now closes recent notes (as works in other dialogs)

This commit is contained in:
azivner 2017-10-11 19:59:49 -04:00
parent c3462a3d0e
commit 562a071350

View file

@ -88,6 +88,9 @@ $('#recent-notes-select-box').keydown(e => {
else if (key === 76 /* l */) {
addLinkBasedOnRecentNotes();
}
else {
return; // avoid prevent default
}
e.preventDefault();
});