diff options
author | Christian Franke <nobody@nowhere.ws> | 2016-01-18 17:17:16 +0100 |
---|---|---|
committer | Christian Franke <nobody@nowhere.ws> | 2016-01-18 18:06:26 +0100 |
commit | 90836e95ba86ea44dd338fcace0d3ebd82a62b57 (patch) | |
tree | 2a5641dea0b6b278af54e8b8d757ecd557a115a6 /public | |
parent | ee485c88b7032e4df4d53cbe71d9d3c9bc1fa41c (diff) |
Add calendar foo
Diffstat (limited to 'public')
-rw-r--r-- | public/js/calendar.js | 7 |
1 files changed, 7 insertions, 0 deletions
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(); +}); + |