You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
530 B
13 lines
530 B
document.addEventListener('DOMContentLoaded', function() { |
|
const toggleButton = document.getElementById('toggle-facets'); |
|
const facets = document.querySelectorAll('.region--sidebar .block'); // Scope to sidebar |
|
|
|
toggleButton.addEventListener('click', function() { |
|
const isHidden = facets[0].style.display === 'none' || !facets[0].style.display; // Assume initial 'none' from CSS |
|
const newDisplay = isHidden ? 'block' : 'none'; |
|
|
|
facets.forEach(facet => { |
|
facet.style.display = newDisplay; |
|
}); |
|
}); |
|
});
|
|
|