summaryrefslogtreecommitdiff
path: root/js/help.js
diff options
context:
space:
mode:
authorChris Wanstrath <chris@ozmm.org>2011-03-02 21:29:06 -0800
committerChris Wanstrath <chris@ozmm.org>2011-03-02 21:29:06 -0800
commitcd435bae5c2a147372dd357061601735407a0a9f (patch)
tree30498874a4b637dfdfddac545fa0db2ef530b187 /js/help.js
parentf72958af513fa7fa1676846f94a9e0590f7cf908 (diff)
remove the js files
Diffstat (limited to 'js/help.js')
-rw-r--r--js/help.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/js/help.js b/js/help.js
deleted file mode 100644
index b372837..0000000
--- a/js/help.js
+++ /dev/null
@@ -1,14 +0,0 @@
- $(document).ready(function(){
- $(".more-info h4").click(function () {
- var contentdiv = $(this).parent().find(".more-content")
- var h4 = $(this).parent().find("h4")
- h4.toggleClass("compressed expanded")
- if (contentdiv.is(":hidden")) {
- contentdiv.slideDown("50")
- } else {
- contentdiv.slideUp("50")
- }
- })
- });
-
-