Automatically closed - issue fixed for 2 weeks with no activity.
the button is visible even if there are no active facets
add any form to the page with
<input type="radio" checked="checked" >
<input type="checkbox" checked="checked" >
in facets_reset_button.js it bypasses all checkboxes on the page
var checked = $("input[checked='checked']");
should be changed to react only to facet checkboxes
var checked = $("input[checked='checked'].facets-checkbox");
Fixed
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Automatically closed - issue fixed for 2 weeks with no activity.