diff --git a/app/index.html b/app/index.html
index 71fa58fb2..6294994de 100644
--- a/app/index.html
+++ b/app/index.html
@@ -132,6 +132,12 @@
{{appTitle}}
document.body.innerHTML =
'Unfortunately, your browser is not currently supported.
Recommended browsers: Edge, Firefox, Safari, Chrome';
}
+
+ document.addEventListener('click', function (event) {
+ if (event.target.tagName == 'A') {
+ window.location.replace(event.target.href)
+ }
+ });