Skip to content
Snippets Groups Projects
Commit a348687d authored by Demian Katz's avatar Demian Katz
Browse files

Fixed incorrect selector.

- Resolves VUFIND-1246.
parent 06e2012d
No related merge requests found
......@@ -433,8 +433,7 @@ $(document).ready(function commonDocReady() {
});
if (sessionStorage.getItem('vufind_retain_filters')) {
var state = (sessionStorage.getItem('vufind_retain_filters') === 'true');
$('.searchFormKeepFilters').prop('checked', state);
$('#applied-filter').prop('checked', state);
$('.searchFormKeepFilters,.applied-filter').prop('checked', state);
}
setupIeSupport();
......
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