summaryrefslogtreecommitdiff
path: root/public/collapse.js
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2016-03-14 11:11:57 +0100
committerDaniel Friesel <derf@finalrewind.org>2016-03-14 11:11:57 +0100
commitecdb462bbfc5393056b66d41b9a502d334bf5415 (patch)
tree3099604024273eaea796fc4a7c9c5a5b424753ea /public/collapse.js
parentf94b43035028313e57876fb51a59870c1d2548ee (diff)
move css/js into static subdirectory to allow easy static serving
Diffstat (limited to 'public/collapse.js')
-rw-r--r--public/collapse.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/public/collapse.js b/public/collapse.js
deleted file mode 100644
index d38b30a..0000000
--- a/public/collapse.js
+++ /dev/null
@@ -1,22 +0,0 @@
-$(document).ready(function() {
- $('div.displayclean > ul > li').each(function() {
- $(this).click(function() {
- $(this).children('.moreinfo').each(function() {
- if ($(this).hasClass('expanded-moreinfo')) {
- $(this).removeClass('expanded-moreinfo');
- $(this).addClass('collapsed-moreinfo');
- }
- else {
- $('.moreinfo').each(function() {
- if ($(this).hasClass('expanded-moreinfo')) {
- $(this).removeClass('expanded-moreinfo');
- $(this).addClass('collapsed-moreinfo');
- }
- });
- $(this).removeClass('collapsed-moreinfo');
- $(this).addClass('expanded-moreinfo');
- }
- });
- });
- });
-});