Add SQLite passive income dashboard with Excel import and deployment tools

This commit is contained in:
kai
2026-09-09 08:46:27 +02:00
parent 729a13bfca
commit afc6f74f36
27 changed files with 1109 additions and 67 deletions
+10
View File
@@ -0,0 +1,10 @@
'use strict';
document.querySelectorAll('form[data-confirm]').forEach(form => {
form.addEventListener('submit', event => {
if (!window.confirm(form.dataset.confirm)) event.preventDefault();
});
});
const filters = document.getElementById('income-filters');
if (filters) filters.addEventListener('submit', () => {
filters.querySelectorAll('select').forEach(select => { if (!select.value) select.disabled = true; });
});