reorganization of source code

This commit is contained in:
azivner
2017-10-15 19:47:05 -04:00
parent 38b95a743b
commit 0c823a2927
315 changed files with 99 additions and 530 deletions

View File

@@ -0,0 +1,28 @@
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;
});