diff --git a/index.html b/index.html index 259bdcb..24acb96 100644 --- a/index.html +++ b/index.html @@ -321,7 +321,7 @@ - +
- - - - + \ No newline at end of file diff --git a/script.js b/script.js index c382f46..70fa721 100644 --- a/script.js +++ b/script.js @@ -232,4 +232,15 @@ // Initialize popup initPopup(); + // FAB Button - triggers payment popup from external script + var fabBtn = document.getElementById('fabButton'); + if (fabBtn) { + fabBtn.addEventListener('click', function() { + // The external payment script handles the popup + if (window.openPaymentPopup) { + window.openPaymentPopup(); + } + }); + } + })(); \ No newline at end of file