Sha256: 4a6da121f640c22c77af3dadf787376fc0dbc2ecdff290ea8dd1fefd38e451da

Contents?: true

Size: 309 Bytes

Versions: 22

Compression:

Stored size: 309 Bytes

Contents

/** 
* jQuery Plugin Function 
* 
* Make all elements same height according to “tallest” one found :) 
* Original code : http://codesnipp.it/code/441 
*/ 
jQuery.fn.equalHeights = function() { 
return this.height(Math.max.apply(null, 
this.map(function() { 
return jQuery(this).height() 
}).get() 
)); 
};

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
all_seeing_eye-0.0.2 lib/all_seeing_eye/server/public/jquery.equal_heights.js
all_seeing_eye-0.0.1 lib/all_seeing_eye/server/public/jquery.equal_heights.js