<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">// 12-20-21

// Truncates Paragraph Text
$(document).ready(function() {
	$(".spotlight-caption-container .spotlight-paragraph").dotdotdot({
		height: 50,
		fallbackToLetter: true,
		watch: true,
	});
});

$('.spotlight-figure-box-small').add($('.spotlight-figure-box-large')).each(function()
{
	if ($(this).html().trim() === '')
	{
		$(this).hide();
	}
});
</pre></body></html>