mirror of
https://github.com/zadam/trilium.git
synced 2025-03-04 02:53:30 +08:00
link is inserted at correct position in the editor
This commit is contained in:
parent
a2d174665b
commit
570dd7cb4e
1 changed files with 7 additions and 7 deletions
|
@ -97,6 +97,9 @@ $(document).on('click', 'div.popover-content a', function(e) {
|
||||||
let linkInfo;
|
let linkInfo;
|
||||||
|
|
||||||
$(document).bind('keydown', 'alt+l', function() {
|
$(document).bind('keydown', 'alt+l', function() {
|
||||||
|
const noteDetail = $('#noteDetail');
|
||||||
|
noteDetail.summernote('editor.saveRange');
|
||||||
|
|
||||||
$("#insertLinkDialog").dialog({
|
$("#insertLinkDialog").dialog({
|
||||||
modal: true
|
modal: true
|
||||||
});
|
});
|
||||||
|
@ -121,10 +124,7 @@ $(document).bind('keydown', 'alt+l', function() {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
//const noteDetail = $('#noteDetail');
|
|
||||||
|
|
||||||
//linkInfo = noteDetail.summernote('invoke', 'editor.getLinkInfo');
|
//linkInfo = noteDetail.summernote('invoke', 'editor.getLinkInfo');
|
||||||
//noteDetail.summernote('invoke', 'editor.saveRange');
|
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#addLinkButton").click(function() {
|
$("#addLinkButton").click(function() {
|
||||||
|
@ -138,15 +138,15 @@ $("#addLinkButton").click(function() {
|
||||||
|
|
||||||
const noteDetail = $('#noteDetail');
|
const noteDetail = $('#noteDetail');
|
||||||
|
|
||||||
|
$("#insertLinkDialog").dialog("close");
|
||||||
|
|
||||||
|
noteDetail.summernote('editor.restoreRange');
|
||||||
|
|
||||||
noteDetail.summernote('createLink', {
|
noteDetail.summernote('createLink', {
|
||||||
text: globalNoteNames[noteId],
|
text: globalNoteNames[noteId],
|
||||||
url: 'app#' + noteId,
|
url: 'app#' + noteId,
|
||||||
isNewWindow: true
|
isNewWindow: true
|
||||||
// range: linkInfo.range
|
// range: linkInfo.range
|
||||||
});
|
});
|
||||||
|
|
||||||
//noteDetail.summernote('invoke', 'editor.restoreRange');
|
|
||||||
|
|
||||||
$("#insertLinkDialog").dialog("close");
|
|
||||||
}
|
}
|
||||||
});
|
});
|
Loading…
Reference in a new issue