4,656
edits
No edit summary |
No edit summary |
||
| Line 1,306: | Line 1,306: | ||
function updatePrintSelectionUI() { | function updatePrintSelectionUI() { | ||
var activeCount = jQuery("#filters .values button.active").length; | requestAnimationFrame(function () { | ||
var activeCount = jQuery("#filters .values button.active").length; | |||
console.log("updatePrintSelectionUI activeCount:", activeCount); | |||
if (activeCount > 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(); | ||
} | } | ||
}); | |||
} | } | ||