Advertisement
imranmodel32

Bootstrap grid height fix for small devices

Aug 15th, 2014
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. var heights = $(".rx-skill-single").map(function() {
  2. return $(this).height();
  3. }).get(),
  4.  
  5. maxHeight = Math.max.apply(null, heights);
  6.  
  7. $(".rx-skill-single").height(maxHeight);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement