4,656
edits
No edit summary |
No edit summary |
||
| Line 700: | Line 700: | ||
// Reset function to remove active filters | // Reset function to remove active filters | ||
$(".reset-filter").click(function (event) { | $(".reset-filter").click(function (event) { | ||
event.stopPropagation(); | event.stopPropagation(); | ||
$("#filters .values button").removeClass("active"); | $("#filters .values button").removeClass("active"); | ||
$(".open-filter").removeClass("active-filter"); | $(".open-filter").removeClass("active-filter"); | ||
$(".count-filtered-cards").text("").hide(); | $(".count-filtered-cards").text("").hide(); | ||
filterCards | filterCards(); | ||
}); | }); | ||
| Line 722: | Line 712: | ||
console.log("Filter is clicked!!!"); | console.log("Filter is clicked!!!"); | ||
$(this).toggleClass("active"); | $(this).toggleClass("active"); | ||
filterCards | filterCards(); | ||
}); | }); | ||
| Line 1,321: | Line 1,306: | ||
function updatePrintSelectionUI() { | function updatePrintSelectionUI() { | ||
var hasActiveFilters = jQuery("#filters .values button.active").length > 0; | |||
if (hasActiveFilters) { | |||
jQuery("#print-selection-wrapper").show(); | jQuery("#print-selection-wrapper").show(); | ||
} else { | |||
jQuery("#print-selection-wrapper").hide(); | jQuery("#print-selection-wrapper").hide(); | ||
jQuery("#print-selection-options").hide(); | jQuery("#print-selection-options").hide(); | ||
} | |||
} | |||
} | } | ||