diff --git a/public/javascripts/note_tree.js b/public/javascripts/note_tree.js index 9890a9ff4..169db866d 100644 --- a/public/javascripts/note_tree.js +++ b/public/javascripts/note_tree.js @@ -4,6 +4,7 @@ const noteTree = (function() { const treeEl = $("#tree"); const parentListEl = $("#parent-list"); const parentListListEl = $("#parent-list-list"); + const noteDetailEl = $("#note-detail"); let startNotePath = null; let notesTreeMap = {}; @@ -453,6 +454,9 @@ const noteTree = (function() { return false; }, + "ctrl+return": node => { + noteDetailEl.focus(); + }, // code below shouldn't be necessary normally, however there's some problem with interaction with context menu plugin // after opening context menu, standard shortcuts don't work, but they are detected here // so we essentially takeover the standard handling with our implementation.