copied links from tree should be reference links

This commit is contained in:
zadam
2021-12-04 12:50:02 +01:00
parent c4ab6b4866
commit e079359c15
3 changed files with 8 additions and 2 deletions

View File

@@ -21,6 +21,7 @@ async function createNoteLink(notePath, options = {}) {
const showTooltip = options.showTooltip === undefined ? true : options.showTooltip;
const showNotePath = options.showNotePath === undefined ? false : options.showNotePath;
const showNoteIcon = options.showNoteIcon === undefined ? false : options.showNoteIcon;
const referenceLink = options.referenceLink === undefined ? false : options.referenceLink;
const {noteId, parentNoteId} = treeService.getNoteIdAndParentIdFromNotePath(notePath);
@@ -48,6 +49,10 @@ async function createNoteLink(notePath, options = {}) {
$noteLink.addClass("no-tooltip-preview");
}
if (referenceLink) {
$noteLink.addClass("reference-link");
}
$container.append($noteLink);
if (showNotePath) {