mirror of
https://github.com/zadam/trilium.git
synced 2024-11-14 19:55:10 +08:00
26 lines
591 B
JavaScript
26 lines
591 B
JavaScript
|
$(document).bind('keydown', 'alt+j', function() {
|
||
|
$("#jumpToNoteAutocomplete").val('');
|
||
|
|
||
|
$("#jumpToNoteDialog").dialog({
|
||
|
modal: true,
|
||
|
width: 500
|
||
|
});
|
||
|
|
||
|
$("#jumpToNoteAutocomplete").autocomplete({
|
||
|
source: getAutocompleteItems(globalAllNoteIds),
|
||
|
minLength: 0
|
||
|
});
|
||
|
});
|
||
|
|
||
|
$("#jumpToNoteForm").submit(function() {
|
||
|
const val = $("#jumpToNoteAutocomplete").val();
|
||
|
const noteId = getNodeIdFromLabel(val);
|
||
|
|
||
|
if (noteId) {
|
||
|
getNodeByKey(noteId).setActive();
|
||
|
|
||
|
$("#jumpToNoteDialog").dialog('close');
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
});
|