From 90836e95ba86ea44dd338fcace0d3ebd82a62b57 Mon Sep 17 00:00:00 2001 From: Christian Franke Date: Mon, 18 Jan 2016 17:17:16 +0100 Subject: Add calendar foo --- public/js/calendar.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 public/js/calendar.js (limited to 'public/js/calendar.js') diff --git a/public/js/calendar.js b/public/js/calendar.js new file mode 100644 index 0000000..2f402ae --- /dev/null +++ b/public/js/calendar.js @@ -0,0 +1,7 @@ +$(function() { + $('.calendar-listing>p').click(function() { + $(this).next().toggle('fast'); + return false; + }).next().hide(); +}); + -- cgit v1.2.1