summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2010-05-10 19:57:43 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2010-05-10 19:57:43 +0200
commit91c32bce7e26683d02854f84a2b35d8461e16699 (patch)
treeccc4ba62f8299e3fdd7adfce224be98a4e739da5 /static
parent387e4209675ae04088b30f29e060746d3d8403b1 (diff)
downloadkosten-91c32bce7e26683d02854f84a2b35d8461e16699.tar.gz
kosten-91c32bce7e26683d02854f84a2b35d8461e16699.tar.bz2
kosten-91c32bce7e26683d02854f84a2b35d8461e16699.zip
Show details
Diffstat (limited to 'static')
-rw-r--r--static/js/show.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/static/js/show.js b/static/js/show.js
new file mode 100644
index 0000000..c0b6d12
--- /dev/null
+++ b/static/js/show.js
@@ -0,0 +1,7 @@
+$(document).ready(function(){
+ $(".details_heading").click(function() {
+ $(this).next().toggle()
+ })
+
+ $(".details").hide()
+})