small fixes

This commit is contained in:
zadam
2019-09-09 20:29:07 +02:00
parent 30c56cd8af
commit 76f3e87790
7 changed files with 151 additions and 142 deletions

View File

@@ -89,6 +89,15 @@ export default class LinkMap {
.prop("id", noteBoxId);
linkService.createNoteLink(noteId, note.title).then($link => {
$link.click(e => {
try {
$link.tooltip('dispose');
}
catch (e) {}
linkService.goToLink(e);
});
$noteBox.append($("<span>").addClass("title").append($link));
});