Files
delphi-database/static/js/financial.js
HotSwapp c2f3c4411d progress
2025-08-09 16:37:57 -05:00

19 lines
427 B
JavaScript

// 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 ...