summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorChristian Franke <nobody@nowhere.ws>2016-01-18 17:17:16 +0100
committerChristian Franke <nobody@nowhere.ws>2016-01-18 18:06:26 +0100
commit90836e95ba86ea44dd338fcace0d3ebd82a62b57 (patch)
tree2a5641dea0b6b278af54e8b8d757ecd557a115a6 /public
parentee485c88b7032e4df4d53cbe71d9d3c9bc1fa41c (diff)
Add calendar foo
Diffstat (limited to 'public')
-rw-r--r--public/js/calendar.js7
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();
+});
+