From a24e8ed790eb3352470da610d63536501767bdf1 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 20 May 2026 13:10:28 +0000 Subject: [PATCH] Open site in new tab instead of same tab --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index e8f778c..bfae591 100644 --- a/index.html +++ b/index.html @@ -487,7 +487,7 @@ const val = document.getElementById('theme-select').value; let url = slug + '/'; if (val) url += '?theme=' + encodeURIComponent('../themes/' + val); - window.location.href = url; + window.open(url, '_blank'); }