When I limit the display of results and load new content with a pager using ajax in views, the "equal height"-script does not run again.
How can I achieve this?

Comments

drurian’s picture

Assigned: Unassigned » drurian

I need to redesign the module to use Drupal's behaviors, then it'll work with the AJAX

chrisrcooper’s picture

I hacked around this by including:

jQuery(document).ajaxSuccess(function(){
	
	(function($) {
	  /**
	   * @rerun equalHeights on Ajax
	   */
		$(this).trigger('resize.omegaequalheights');

	})(jQuery);
});

Within a script for the theme.

drurian’s picture

Version: 7.x-1.0 » 7.x-2.x-dev
Status: Active » Fixed

Fixed in 7.x-2.x

drurian’s picture

Status: Fixed » Closed (fixed)