<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">(function ($) {
  jQuery(function () {
    //$('.publications form.searchandfilter .sf-field-post-meta-publication_year ul').hide();
    $(
      ".publications form.searchandfilter .sf-field-post-meta-publication_year"
    ).click(function () {
      $(this).find("ul").toggle();
      $(this).toggleClass("minus-icon");
    });

    $(
      ".publications form.searchandfilter .sf-field-taxonomy-publication_type"
    ).click(function () {
      $(this).find("ul").toggle();
      $(this).toggleClass("minus-icon");
    });

    if (window.location.href.indexOf("/?_s") &gt; -1) {
      jQuery("html, body").animate(
        {
          scrollTop: jQuery(".publication-list").offset().top - 400,
        },
        1000
      );
    }
  });
})(jQuery);
</pre></body></html>