external links should open only in new window, not in the original window, closes #1171

This commit is contained in:
zadam 2020-08-04 20:42:32 +02:00
parent 4b101baf00
commit 3c1a809276

View file

@ -83,6 +83,8 @@ function setupGlobs() {
$("body").on("click", "a.external", function () { $("body").on("click", "a.external", function () {
window.open($(this).attr("href"), '_blank'); window.open($(this).attr("href"), '_blank');
return false;
}); });
} }