Created
June 20, 2017 21:00
-
-
Save whistlerbrad/06055f96903d84f3682a7eeaab9c6091 to your computer and use it in GitHub Desktop.
Equal Height
This file contains hidden or 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
| $('.tab-content').css('min-height', function() { | |
| var blockHeights = $('.tab-content').map(function() { | |
| return $(this).height(); | |
| }).get(); | |
| var tallest = Math.max.apply(null, blockHeights); | |
| return (tallest + 30); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment