From 20c0a1b272a77e2b2583e8f3b585a1514a3cf247 Mon Sep 17 00:00:00 2001 From: Nirmal Kumar R Date: Sun, 31 May 2026 00:43:27 +0530 Subject: [PATCH] feat: open source code link in new tab via dialog event listener --- src/index.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/index.html b/src/index.html index 2ab1db4..17114ca 100644 --- a/src/index.html +++ b/src/index.html @@ -1902,6 +1902,10 @@ e.preventDefault(); }); dialogOv.addEventListener("click", (e) => { + if (e.target.id == "source-code-link") { + window.open("https://github.com/potentzero/pascar", "_blank"); + return; + } e.preventDefault(); }); if (onReady) onReady(); @@ -1922,7 +1926,7 @@ Open & save files via your local filesystem.
- Source code + Source code by Nirmal Kumar R.