-
-
Save iamstoick/476a6ecc7f7fd1c2351d66072518dcce to your computer and use it in GitHub Desktop.
Drupal.equalHeight
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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