diff --git a/app/index.html b/app/index.html
index b6a97c6a2..bfeb2d9a1 100644
--- a/app/index.html
+++ b/app/index.html
@@ -134,10 +134,9 @@
{{appTitle}}
}
document.addEventListener('click', function (event) {
- event.preventDefault();
if (event.target.tagName == 'A' && event.target.href) {
- window.history.pushState({}, '', window.location.toString());
- window.location.replace(event.target.href);
+ event.preventDefault();
+ window.location.href = event.target.href;
}
});