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