mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 19:05:59 +01:00
cleanup
This commit is contained in:
@@ -108,9 +108,6 @@ function getNodeIdFromLabel(label) {
|
||||
}
|
||||
|
||||
$(document).bind('keydown', 'alt+l', function() {
|
||||
var range = $('#noteDetail').summernote('createRange');
|
||||
console.log("range:", range);
|
||||
|
||||
$("#noteAutocomplete").val('');
|
||||
$("#linkTitle").val('');
|
||||
|
||||
@@ -124,7 +121,7 @@ $(document).bind('keydown', 'alt+l', function() {
|
||||
|
||||
let autocompleteItems = [];
|
||||
|
||||
for (let noteId in globalNoteNames) {
|
||||
for (const noteId of globalAllNoteIds) {
|
||||
let fullName = getFullName(noteId);
|
||||
|
||||
autocompleteItems.push({
|
||||
|
||||
Reference in New Issue
Block a user