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.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/static/js/show.js b/static/js/show.js
deleted file mode 100644
index 04b9a83..0000000
--- a/static/js/show.js
+++ /dev/null
@@ -1,17 +0,0 @@
-$(document).ready(function(){
-
- $(".detail span").click(function() {
- $(this).prevAll(".mark:last").click();
- });
-
- $(".detail > .mark").click(function() {
- if (this.src.indexOf("closed") != -1)
- this.src = this.src.replace("closed", "open");
- else
- this.src = this.src.replace("open", "closed");
-
- $(this).nextAll(".details:first").toggle();
- })
-
- $(".details").hide();
-})