Ga naar de inhoud
document.addEventListener('DOMContentLoaded', function() {
// Wait for calendar initialization
setTimeout(function() {
var calendars = document.querySelectorAll('.dynamic-calendar');
calendars.forEach(function(el) {
if (el._fullCalendar) {
el._fullCalendar.setOption('weekends', false);
}
});
}, 500); // slight delay to ensure FullCalendar is loaded
});