New: Vergunningcheck online

This commit is contained in:
2026-02-16 10:37:39 +01:00
parent 75f8e29973
commit ab2b980d97
18 changed files with 405 additions and 82 deletions

View File

@@ -1,7 +1,7 @@
// bootstrap js components
// import Alert from "js/bootstrap/src/alert";
// import Button from "js/bootstrap/src/button";
// import Carousel from "js/bootstrap/src/carousel";
import Carousel from "js/bootstrap/src/carousel";
import Collapse from "js/bootstrap/src/collapse";
import Dropdown from "js/bootstrap/src/dropdown";
import Modal from "js/bootstrap/src/modal";
@@ -45,6 +45,14 @@ import Tab from "js/bootstrap/src/tab";
modalOpen = false;
}
}
// Zoek alle carousels en initialiseer ze
const carouselList = document.querySelectorAll('.carousel');
carouselList.forEach(carousel => {
new Carousel(carousel, {
ride: 'carousel',
interval: 5000 // optioneel: snelheid
});
});
});
searchModalEl.addEventListener('hidden.bs.modal', e => {