diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2010-05-10 19:57:43 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2010-05-10 19:57:43 +0200 |
commit | 91c32bce7e26683d02854f84a2b35d8461e16699 (patch) | |
tree | ccc4ba62f8299e3fdd7adfce224be98a4e739da5 /static | |
parent | 387e4209675ae04088b30f29e060746d3d8403b1 (diff) | |
download | kosten-91c32bce7e26683d02854f84a2b35d8461e16699.tar.gz kosten-91c32bce7e26683d02854f84a2b35d8461e16699.tar.bz2 kosten-91c32bce7e26683d02854f84a2b35d8461e16699.zip |
Show details
Diffstat (limited to '')
-rw-r--r-- | static/js/show.js | 7 |
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() +}) |