summaryrefslogtreecommitdiff
path: root/static/js/show.js
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2013-09-14 00:27:31 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2013-09-14 00:27:31 +0200
commitf475f0095f2b4af1acab8cfe3d6c866a71b73bf1 (patch)
treef43d5ca41f17765c56bf00afb0a523ffef805b2f /static/js/show.js
parent9b358a4a3e6ce5cad229ba2fa6da9218e88b61e0 (diff)
downloadkosten-f475f0095f2b4af1acab8cfe3d6c866a71b73bf1.tar.gz
kosten-f475f0095f2b4af1acab8cfe3d6c866a71b73bf1.tar.bz2
kosten-f475f0095f2b4af1acab8cfe3d6c866a71b73bf1.zip
Replaced current JS by LS and generated JS
Diffstat (limited to '')
-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();
-})