From e02193faaefba08ca91b7319ab58ea177e5c86c4 Mon Sep 17 00:00:00 2001 From: Marty Bostick Date: Wed, 29 Jul 2026 22:02:18 +0000 Subject: [PATCH] Fix tab button JS: revert erroneous IIFE invocation that broke event wiring --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 0849d35..1657f7c 100644 --- a/index.html +++ b/index.html @@ -1949,7 +1949,7 @@ document.querySelectorAll('.tab-btn').forEach(btn => { document.getElementById('tab-' + btn.dataset.tab).classList.add('active'); setTimeout(() => { if (chart1) chart1.resize(); if (chart2) chart2.resize(); if (chart3) chart3.resize(); }, 50); }); -})(); +}); // ─── Load URL params (gift, self) into controls ──────── (function loadURLParams() {