15 lines
428 B
JavaScript
15 lines
428 B
JavaScript
/* document.addEventListener("DOMContentLoaded", () => {
|
||
const invoiceForms = document.querySelectorAll(".invoice-form");
|
||
|
||
invoiceForms.forEach(form => {
|
||
form.addEventListener("submit", () => {
|
||
console.log("🧾 Rechnung erstellt – Reload folgt");
|
||
|
||
// kleiner Delay, damit Backend committen kann
|
||
setTimeout(() => {
|
||
window.location.reload();
|
||
}, 1200);
|
||
});
|
||
});
|
||
});
|
||
*/ |