summaryrefslogtreecommitdiff
path: root/html/assets/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'html/assets/main.js')
-rw-r--r--html/assets/main.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/html/assets/main.js b/html/assets/main.js
index b1e9b9e..5863530 100644
--- a/html/assets/main.js
+++ b/html/assets/main.js
@@ -8,4 +8,9 @@ $(document).ready(function() {
window.document.location = $(this).attr("href");
}
});
+
+ // Credits changelog toggle
+ $(".changeLog").click(function() {
+ $("#contentChangeLog").slideToggle(300);
+ });
});