forked from CGM_Public/pretix_original
Week calendar: Collapse days on mobile (except the current day)
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user