summaryrefslogtreecommitdiff
path: root/html/assets/main.js
diff options
context:
space:
mode:
authorMatthijs Kuiper <info@matthijskuiper.nl>2018-01-09 00:43:43 +0100
committerMatthijs Kuiper <info@matthijskuiper.nl>2018-01-09 00:44:09 +0100
commit3a58cb2802c8be14f78015105afe759b1c7ce692 (patch)
tree40781feb2f25ae378bb5362e4295b7006f28054c /html/assets/main.js
parentd0102c6fd4b188b0a1c5ffd3bf9a834a64a5c709 (diff)
Implement design for pages and update includes
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);
+ });
});