mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 18:36:30 +01: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;
 | |
| }); |