aboutsummaryrefslogtreecommitdiffstats
path: root/static/scripts.js
diff options
context:
space:
mode:
authorjwansek <eddie.atten.ea29@gmail.com>2023-05-07 22:16:38 +0100
committerjwansek <eddie.atten.ea29@gmail.com>2023-05-07 22:16:38 +0100
commitcb07e37ed72182af33a992d7e0b44f7c7ee4af04 (patch)
tree6576f0cdf1b0a1256b3fcdb94873545e2068699f /static/scripts.js
parent1eea185d337eadd7a5309a707d8f0c5cd0d85d9c (diff)
downloadUKGenderPayGap-cb07e37ed72182af33a992d7e0b44f7c7ee4af04.tar.gz
UKGenderPayGap-cb07e37ed72182af33a992d7e0b44f7c7ee4af04.zip
Finished filtering client side
Diffstat (limited to 'static/scripts.js')
-rw-r--r--static/scripts.js12
1 files changed, 9 insertions, 3 deletions
diff --git a/static/scripts.js b/static/scripts.js
index 6fec221..01196d3 100644
--- a/static/scripts.js
+++ b/static/scripts.js
@@ -1,5 +1,11 @@
-function collapseTogglePress(elem) {
- console.log("elem");
+function collapseTogglePress(elem, a_elem, num_hidden) {
+ if (getComputedStyle(document.getElementById(elem)).display === "none") {
+ document.getElementById(elem).style.display = "block";
+ document.getElementById(a_elem).innerText = `Hide ${num_hidden} filters`
+ } else {
+ document.getElementById(elem).style.display = "none";
+ document.getElementById(a_elem).innerText =`Un-hide ${num_hidden} hidden filters`
+ }
}
const PLOT_FUNC_MAPPINGS = {
@@ -7,7 +13,7 @@ const PLOT_FUNC_MAPPINGS = {
}
$(document).ready(function() {
- console.log("ready!");
+ document.getElementById("filterform").action = window.location.pathname + "/apply_click";
fetch("/api/charts.json").then((resp) => {
resp.json().then((body) => {