Skip to content
Snippets Groups Projects
Commit 6475adc2 authored by Chris Hallberg's avatar Chris Hallberg
Browse files

Fix applied filters by not blind toggling.

parent 51a1fdf3
No related merge requests found
......@@ -429,6 +429,7 @@ $(document).ready(function commonDocReady() {
// retain filter sessionStorage
$('.searchFormKeepFilters').click(function retainFiltersInSessionStorage() {
sessionStorage.setItem('vufind_retain_filters', this.checked ? 'true' : 'false');
$('.applied-filter').prop('checked', this.checked);
});
if (sessionStorage.getItem('vufind_retain_filters')) {
var state = (sessionStorage.getItem('vufind_retain_filters') === 'true');
......
......@@ -83,7 +83,7 @@
<? $defaultFilterState = $options->getRetainFilterSetting() ? ' checked="checked"' : ''; ?>
<div class="checkbox">
<label>
<input onChange="$('.applied-filter').click()" type="checkbox"<?=$defaultFilterState?> class="searchFormKeepFilters"/>
<input type="checkbox"<?=$defaultFilterState?> class="searchFormKeepFilters"/>
<?=$this->transEsc("basic_search_keep_filters")?>
</label>
</div>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment