From 8178b72df2de0d693e55aff19b155063c5cb544c Mon Sep 17 00:00:00 2001 From: Marty Bostick Date: Thu, 30 Jul 2026 21:39:16 +0000 Subject: [PATCH] Fix: sponsor columns now properly hide when 'Show referral earnings' is off - Added .referral-col class to overview body s (10% and cumulative columns) - Added .referral-col class to timeline body s (commission and cumulative) - Added .referral-col class to 'Sponsor's Cumulative' header in both overview and timeline tables - All sponsor columns now hide/show together via the checkbox toggle --- index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index 560bccb..91873ab 100644 --- a/index.html +++ b/index.html @@ -1297,7 +1297,7 @@ Their Gross Payout Their Net Profit Sponsor's 10% - Sponsor's Cumulative + Sponsor's Cumulative @@ -1313,7 +1313,7 @@ MonthActive Phase Their Profit This Month Sponsor's Commission/Month - Sponsor's Cumulative + Sponsor's Cumulative @@ -1751,8 +1751,8 @@ ${numPeople > 0 ? ` ${k === '3xL7' ? 'ongoing' : `~${p.months} months`} $${p.payout.toFixed(2)} $${p.profit.toFixed(2)} - $${yourCut.toFixed(2)} - $${cumRunning.toFixed(2)} + $${yourCut.toFixed(2)} + $${cumRunning.toFixed(2)} `; } document.getElementById('overviewBody').innerHTML = rows; @@ -1841,8 +1841,8 @@ ${numPeople > 0 ? ` Month ${m.m} ${m.phase} $${m.prof.toLocaleString()} - $${(m.comm * actualPeople).toLocaleString()} - $${runningCum.toLocaleString()} + $${(m.comm * actualPeople).toLocaleString()} + $${runningCum.toLocaleString()} `; } document.getElementById('timelineBody').innerHTML = tRows;