<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * @file
 * Directory overview.
 */

(function ($) {

  Drupal.behaviors.directory_overview = {
    attach: function(context) {
      $('.view-directory &gt; .view-content &gt; .views-row').each(function() {
        $this = $(this);
        if ($this.children('.views-field-view').length &lt; 1) {
          $this.remove();
        }
      });
    }
  };

})(jQuery);
</pre></body></html>