From d1cd0ceae6fa18953b590d71b03773941927b2f5 Mon Sep 17 00:00:00 2001 From: dexterousdhruv Date: Wed, 9 Oct 2024 12:37:38 +0530 Subject: [PATCH 1/2] Removed popup when Donate is clicked --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 42fe432..92841ff 100644 --- a/index.html +++ b/index.html @@ -25,7 +25,7 @@ @@ -256,7 +256,7 @@ button.addEventListener("click", function() { // Determine which button was clicked and show the popup accordingly const trigger = button.getAttribute("data-popup-trigger"); - if (trigger === "donate" || trigger === "cover-page" || trigger === "navbar") { + if (trigger === "cover-page" || trigger === "navbar") { popup.style.display = "block"; overlay.style.display = "block"; } From bbd96ff4d78ae0962a5ccc293b49a58ebc8664b2 Mon Sep 17 00:00:00 2001 From: dexterousdhruv Date: Wed, 9 Oct 2024 15:19:23 +0530 Subject: [PATCH 2/2] Removed popup when Donate is clicked, from About.html --- about.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/about.html b/about.html index 6bf6b6a..0e7c3d0 100644 --- a/about.html +++ b/about.html @@ -54,8 +54,7 @@ DONATEDONATE ABOUT US CONTACT US @@ -270,7 +269,6 @@ // Determine which button was clicked and show the popup accordingly const trigger = button.getAttribute("data-popup-trigger"); if ( - trigger === "donate" || trigger === "cover-page" || trigger === "navbar" ) {