diff --git a/templates/portfolio/index.html b/templates/portfolio/index.html index 847a622..9440217 100644 --- a/templates/portfolio/index.html +++ b/templates/portfolio/index.html @@ -40,7 +40,7 @@ document.querySelectorAll("main a").forEach(function (link) { link.setAttribute("target", "_blank"); link.setAttribute("rel", "noreferrer"); - link.addEventListener("click", function (event) { + link.addEventListener("mousedown", function (event) { event.stopPropagation(); }); })