diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-09-27 22:49:46 -0600 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2009-09-27 22:49:46 -0600 |
commit | 6cd8679dec24cd643fa3c2d9bdbf6ac8b938600c (patch) | |
tree | 10b2387f208565a7a48444da7169897201811d2b /lib/gallery.common.js | |
parent | 8060a8a6594c8bc089098329c52bd1d42a0c7adb (diff) |
Set .gItem height dynamically based on the tallest item in the grid. Addresses ticket #757
Diffstat (limited to 'lib/gallery.common.js')
-rw-r--r-- | lib/gallery.common.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/gallery.common.js b/lib/gallery.common.js index 618c556e..a91f021e 100644 --- a/lib/gallery.common.js +++ b/lib/gallery.common.js @@ -6,6 +6,18 @@ }); }; + // Make the height of all items the same as the tallest item within the set + $.fn.equal_heights = function() { + var tallest_height = 0; + $(this).each(function(){ + if ($(this).height() > tallest_height) { + tallest_height = $(this).height(); + } + }); + return $(this).height(tallest_height); + }; + + // Vertically align a block element's content $.fn.gallery_valign = function(container) { return this.each(function(i){ |