4,554
edits
No edit summary |
No edit summary |
||
Line 263: | Line 263: | ||
event.stopPropagation(); | event.stopPropagation(); | ||
} | } | ||
function checkBlockFiltersCleared() { | |||
var checkedFilters = $('#list .filtered-value-option input[type="checkbox"]:checked'); | |||
console.log("Checked filters count:", checkedFilters.length); | |||
if (checkedFilters.length === 0) { | |||
console.log("All filters are cleared"); | |||
communityFeatured.show(); | |||
} else { | |||
console.log("Some filters are still active"); | |||
} | |||
} | |||
function closeModal() { | function closeModal() { |