This commit is contained in:
HotSwapp
2025-08-09 16:37:57 -05:00
parent 5f74243c8c
commit c2f3c4411d
35 changed files with 9209 additions and 4633 deletions

18
static/js/financial.js Normal file
View File

@@ -0,0 +1,18 @@
// financial.js
// Assuming this is a new file
// Copy and adapt the script from financial.html
// ... add the JS content ...
// Modify modal showing/hiding to use classList.add/remove('hidden') instead of Bootstrap modal
// For example:
function showQuickTimeModal() {
document.getElementById('quickTimeModal').classList.remove('hidden');
}
// Add event listeners for close buttons, etc.
// ... complete the JS ...