mirror of
https://github.com/zadam/trilium.git
synced 2024-11-13 03:04:27 +08:00
26 lines
No EOL
591 B
JavaScript
26 lines
No EOL
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;
|
|
}); |