mirror of
				https://github.com/TriliumNext/Notes.git
				synced 2025-11-04 23:31:33 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			635 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			635 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
function showJumpToNote() {
 | 
						|
    $("#jump-to-note-autocomplete").val('');
 | 
						|
 | 
						|
    $("#jump-to-note-dialog").dialog({
 | 
						|
        modal: true,
 | 
						|
        width: 800
 | 
						|
    });
 | 
						|
 | 
						|
    $("#jump-to-note-autocomplete").autocomplete({
 | 
						|
        source: getAutocompleteItems(globalAllNoteIds),
 | 
						|
        minLength: 0
 | 
						|
    });
 | 
						|
}
 | 
						|
 | 
						|
$(document).bind('keydown', 'alt+j', showJumpToNote);
 | 
						|
 | 
						|
$("#jump-to-note-form").submit(() => {
 | 
						|
    const val = $("#jump-to-note-autocomplete").val();
 | 
						|
    const noteId = getNodeIdFromLabel(val);
 | 
						|
 | 
						|
    if (noteId) {
 | 
						|
        getNodeByKey(noteId).setActive();
 | 
						|
 | 
						|
        $("#jump-to-note-dialog").dialog('close');
 | 
						|
    }
 | 
						|
 | 
						|
    return false;
 | 
						|
}); |