Fix relative links in kanban

This commit is contained in:
yflory 2020-03-11 18:13:45 +01:00
parent 7cd3701f26
commit 77894b5336

View File

@ -421,7 +421,8 @@
e.preventDefault();
var a = e.target;
if (!a.href) { return; }
self.options.openLink(a.href);
var href = a.getAttribute('href');
self.options.openLink(href);
});
nodeBody.onclick = function (e) {
e.preventDefault();