recent changes now display also newly created notes without any revisions, some extra improvements to the dialog

This commit is contained in:
zadam
2019-09-02 20:26:18 +02:00
parent a981df6282
commit a6f57d7761
4 changed files with 46 additions and 17 deletions

View File

@@ -30,8 +30,8 @@ async function createNoteLink(notePath, noteTitle = null) {
return noteLink;
}
async function createNoteLinkWithPath(notePath) {
const $link = await createNoteLink(notePath);
async function createNoteLinkWithPath(notePath, noteTitle = null) {
const $link = await createNoteLink(notePath, noteTitle);
const $res = $("<span>").append($link);