diff --git a/docs/source/_static/custom.js b/docs/source/_static/custom.js index 0903c58..c17c390 100644 --- a/docs/source/_static/custom.js +++ b/docs/source/_static/custom.js @@ -26,7 +26,7 @@ document.addEventListener("DOMContentLoaded", function () { select.addEventListener("change", function () { var url = select.value; if (url) { - window.open(url, "_blank", "noopener,noreferrer"); + window.location.href = url; select.value = ""; } });