From b22d55c1836fb0e35be9bdff7b314ef7a36c0e58 Mon Sep 17 00:00:00 2001 From: azivner Date: Mon, 28 Aug 2017 22:01:02 -0400 Subject: [PATCH] fix - link label set explicitly was not respected --- static/js/init.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/init.js b/static/js/init.js index 210a28260..a0b905a33 100644 --- a/static/js/init.js +++ b/static/js/init.js @@ -148,7 +148,7 @@ $("#addLinkButton").click(function() { noteDetail.summernote('editor.restoreRange'); noteDetail.summernote('createLink', { - text: globalNoteNames[noteId], + text: linkTitle, url: 'app#' + noteId, isNewWindow: true });