4,656
edits
No edit summary |
No edit summary |
||
| Line 1,321: | Line 1,321: | ||
function updatePrintSelectionUI() { | function updatePrintSelectionUI() { | ||
var allCards = jQuery(".list-container .card").not(".event").length; | setTimeout(function () { | ||
var allCards = jQuery(".list-container .card").not(".event").length; | |||
var visibleCards = jQuery(".list-container .card:visible").not(".event").length; | |||
var isFiltered = visibleCards < allCards; | |||
if (isFiltered && visibleCards > 0) { | |||
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(); | ||
} | } | ||
}, 0); | |||
} | } | ||