mirror of
https://github.com/zadam/trilium.git
synced 2025-01-24 07:59:08 +08:00
fix opening links with single click outside of the ckeditor instance
This commit is contained in:
parent
4d110aa143
commit
51db6761c8
1 changed files with 7 additions and 0 deletions
|
@ -74,8 +74,12 @@ function goToLink(e) {
|
|||
|
||||
const $link = $(e.target).closest("a,.block-link");
|
||||
|
||||
console.log("zzzzz", $link);
|
||||
|
||||
const notePath = getNotePathFromLink($link);
|
||||
|
||||
console.log()
|
||||
|
||||
if (notePath) {
|
||||
if ((e.which === 1 && e.ctrlKey) || e.which === 2) {
|
||||
appContext.tabManager.openTabWithNoteWithHoisting(notePath);
|
||||
|
@ -88,9 +92,12 @@ function goToLink(e) {
|
|||
else {
|
||||
if ((e.which === 1 && e.ctrlKey) || e.which === 2
|
||||
|| $link.hasClass("ck-link-actions__preview") // within edit link dialog single click suffices
|
||||
|| $link.closest("[contenteditable]").length === 0 // outside of CKEditor single click suffices
|
||||
) {
|
||||
const address = $link.attr('href');
|
||||
|
||||
console.log("address", address);
|
||||
|
||||
if (address) {
|
||||
if (address.toLowerCase().startsWith('http')) {
|
||||
window.open(address, '_blank');
|
||||
|
|
Loading…
Reference in a new issue