summaryrefslogtreecommitdiff
path: root/public/js/calendar.js
blob: 41b35d6beefd2ce1066b210e862459353ca6111e (plain)
1
2
3
4
5
6
7
$(function() {
	$('.calendar-listing:not(expanded)>p').click(function() {
		$(this).next().toggle('fast');
		return false;
	}).next().hide();
});