Week calendar: Collapse days on mobile (except the current day)

This commit is contained in:
Raphael Michel
2020-10-07 10:41:30 +02:00
parent 3bfaf55094
commit 9b671d6370
7 changed files with 61 additions and 8 deletions

View File

@@ -439,6 +439,14 @@ $(function () {
}
});
// Week calendar
// On mobile, auto-collapse all days except today
if ($(window).width() < 992) {
$(".week-calendar .weekday:not(.today)").each(function () {
$(this).prop("open", false);
});
}
// Lightbox
lightbox.init();
});
@@ -480,4 +488,4 @@ function copy_answers(elements, answers) {
}
});
questions_toggle_dependent(true);
}
}