Skip to content
Snippets Groups Projects
Commit 3bd9c9f6 authored by Chris Lawton's avatar Chris Lawton
Browse files

allows for filters to stay open where on pages without a seach input

parent 67e75b4d
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,14 @@
// check if the page has a query string and keep filters open if so on desktop
const minimumNumberParams = 1 + urlParams.has('query') ? 1 : 0;
if ([...urlParams].length > minimumNumberParams && $(window).width() > 1024) {
// check for a search query param
if (urlParams.has('query')) {
if ([...urlParams].length > minimumNumberParams && $(window).width() > 1024) {
$body.addClass(filterOpenClass);
updateButtonText();
}
}
else if ([...urlParams].length >= 1 && $(window).width() > 1024) {
$body.addClass(filterOpenClass);
updateButtonText();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment