summaryrefslogtreecommitdiff
path: root/static/js/show.js
diff options
context:
space:
mode:
Diffstat (limited to 'static/js/show.js')
-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()
+})