renaming note_tree to branch

This commit is contained in:
azivner
2018-03-24 21:39:15 -04:00
parent 511fb89af0
commit 4c472ce78b
45 changed files with 540 additions and 508 deletions

View File

@@ -17,7 +17,7 @@ const jumpToNote = (function() {
});
await $autoComplete.autocomplete({
source: await stopWatch("building autocomplete", noteTree.getAutocompleteItems),
source: await stopWatch("building autocomplete", treeService.getAutocompleteItems),
minLength: 0
});
}
@@ -31,7 +31,7 @@ const jumpToNote = (function() {
const notePath = getSelectedNotePath();
if (notePath) {
noteTree.activateNode(notePath);
treeService.activateNode(notePath);
$dialog.dialog('close');
}