From 3c1a809276854859e627cbe63b1b246841509f5c Mon Sep 17 00:00:00 2001 From: zadam Date: Tue, 4 Aug 2020 20:42:32 +0200 Subject: [PATCH] external links should open only in new window, not in the original window, closes #1171 --- src/public/app/services/glob.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/public/app/services/glob.js b/src/public/app/services/glob.js index e2de69def..0eaf8edde 100644 --- a/src/public/app/services/glob.js +++ b/src/public/app/services/glob.js @@ -83,6 +83,8 @@ function setupGlobs() { $("body").on("click", "a.external", function () { window.open($(this).attr("href"), '_blank'); + + return false; }); }