Created
July 7, 2014 23:40
-
-
Save HasStacey/87e74c8eead8961607c8 to your computer and use it in GitHub Desktop.
Set the heights of all card tiles equal to the tallest
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
| var tileTeamMemberHeight = 0; | |
| $('.tile-teamMember').each(function(){ | |
| if($(this).height() > tileTeamMemberHeight ) { | |
| tileTeamMemberHeight = $(this).height(); | |
| } | |
| }); | |
| $('.tile-teamMember').height(tileTeamMemberHeight); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment