Skip to content

Instantly share code, notes, and snippets.

@iamstoick
Forked from ss81/gist:9098276
Created May 12, 2016 13:25
Show Gist options
  • Save iamstoick/476a6ecc7f7fd1c2351d66072518dcce to your computer and use it in GitHub Desktop.
Save iamstoick/476a6ecc7f7fd1c2351d66072518dcce to your computer and use it in GitHub Desktop.
Drupal.equalHeight
Drupal.equalHeight = function(group) {
if ($(group).length > 0) {
var tallest = 0, thisHeight = 0;
$(group).each(function() {
thisHeight = $(this).height();
if (thisHeight > tallest) {
tallest = thisHeight;
}
});
$(group).height(tallest);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment