summaryrefslogtreecommitdiff
path: root/public/js/calendar.js
blob: d3313af9a065d78cc647406b94025d44eaa1af74 (plain)
1
2
3
4
5
6
7
8
9
10
$(function() {
	cal_list = $('.calendar-listing');
	if (cal_list.length && cal_list[0].classList.contains('expanded'))
		return;
	$('.calendar-listing>p').click(function() {
		$(this).next().toggle('fast');
		return false;
	}).next().hide();
});