From b38003778ddf5de5fa40babed4d63e8b5204cedd Mon Sep 17 00:00:00 2001 From: ccadmingit1 Date: Thu, 20 Aug 2026 22:17:05 +0000 Subject: [PATCH] =?UTF-8?q?AI=20update:=20=D7=AA=D7=99=D7=A7=D7=95=D7=9F?= =?UTF-8?q?=20=D7=A4=D7=95=D7=A4-=D7=90=D7=A4=20=D7=AA=D7=A9=D7=9C=D7=95?= =?UTF-8?q?=D7=9D=20=E2=80=94=20=D7=90=D7=99=D7=A6=D7=99=D7=A7=20=D7=91?= =?UTF-8?q?=D7=9B=D7=A8=20=D7=90=D7=99=D7=A0=D7=A1=D7=98=D7=9C=D7=98=D7=95?= =?UTF-8?q?=D7=A8.=20=D7=97=D7=A4=D7=A9=20=D7=91=D7=9B=D7=9C=20=D7=A7?= =?UTF-8?q?=D7=91=D7=A6=D7=99=20=D7=94=D7=A2=D7=9E=D7=95=D7=93=20(HTML/JS)?= =?UTF-8?q?=20=D7=9B=D7=9C=20=D7=A7=D7=95=D7=93=20=D7=AA=D7=A9=D7=9C=D7=95?= =?UTF-8?q?=D7=9D=20=D7=A7=D7=99=D7=99=D7=9D:=20iframe=20=D7=9C=D7=9B?= =?UTF-8?q?=D7=AA=D7=95=D7=91=D7=AA=20SmartPay/pay.sma?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 29becd5..2a9a351 100644 --- a/index.html +++ b/index.html @@ -595,10 +595,10 @@ ללא אחסון — תעלו בעצמכם - + @@ -863,6 +863,8 @@ font-size: 1rem; font-weight: 500; border-radius: var(--radius-md); + border: none; + cursor: pointer; transition: all 0.2s; text-align: center; } @@ -945,9 +947,20 @@ closeModal(); } }); + + // Handle package button clicks + document.querySelectorAll('.package-btn[data-plan]').forEach(function(btn) { + btn.addEventListener('click', function() { + var plan = this.getAttribute('data-plan'); + if (window.SmartPayPopup && typeof window.SmartPayPopup.open === 'function') { + window.SmartPayPopup.open({ plan: plan }); + } + }); + }); })(); + \ No newline at end of file