blob: 94f0c9a7098d77b4416fd9e14112ff9cf1d5d5c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/*!
* Simple jQuery Equal Heights
*
* Copyright (c) 2013 Matt Banks
* Dual licensed under the MIT and GPL licenses.
* Uses the same license as jQuery, see:
* http://docs.jquery.com/License
*
* @version 1.5.1
*/
(function($) {
$.fn.equalHeights = function(options) {
var maxHeight = 0,
$this = $(this),
equalHeightsFn = function() {
var height = $(this).innerHeight();
if ( height > maxHeight ) { maxHeight = height; }
};
options = options || {};
$this.each(equalHeightsFn);
if(options.wait) {
var loop = setInterval(function() {
if(maxHeight > 0) {
clearInterval(loop);
return $this.css('height', maxHeight);
}
$this.each(equalHeightsFn);
}, 100);
} else {
return $this.css('height', maxHeight);
}
};
// auto-initialize plugin
$('[data-equal]').each(function(){
var $this = $(this),
target = $this.data('equal');
$this.find(target).equalHeights();
});
})(jQuery);
|