aboutsummaryrefslogtreecommitdiffhomepage
path: root/ui/static/js/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/static/js/app.js')
-rw-r--r--ui/static/js/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/static/js/app.js b/ui/static/js/app.js
index 829e6cd..8474935 100644
--- a/ui/static/js/app.js
+++ b/ui/static/js/app.js
@@ -285,7 +285,7 @@ function handleFetchOriginalContent() {
function openOriginalLink() {
let entryLink = document.querySelector(".entry h1 a");
if (entryLink !== null) {
- DomHelper.openNewTab(entryLink.getAttribute("href"));
+ window.location.href = entryLink.getAttribute("href");
return;
}