#125, implementation of inheritable relations

This commit is contained in:
azivner
2018-07-29 18:39:10 +02:00
parent 170d317589
commit ed1381103a
8 changed files with 58 additions and 14 deletions

View File

@@ -12,7 +12,7 @@ function setupTooltip() {
notePath = $(this).attr("note-path");
}
if (notePath !== null) {
if (notePath) {
const noteId = treeUtils.getNoteIdFromNotePath(notePath);
noteDetailService.loadNote(noteId).then(note => callback(note.content));