-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathaf.equal-height.js
49 lines (40 loc) · 1.37 KB
/
af.equal-height.js
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
46
47
48
49
// Artfinder Equal Height Children plugin
// https://github.com/artfinder/jquery-equal-height
// version 1.0
(function($) {
$.fn.make_children_equal_height = function () {
var make_equal_height = function (element) {
var $within = $(element),
selector = $within.attr('data-equal-height'),
$children = $(selector, $within),
tallest = 0;
$children.each( function() {
var $this = $(this);
$this.css('min-height', '');
var h = $this.height();
if ( h > tallest ) {
tallest = h;
}
});
$children.each( function() {
$(this).css('min-height', tallest + 'px');
});
};
return this.each( function () {
make_equal_height(this);
});
};
$.fn.make_children_disequal_height = function () {
var make_disequal_height = function (element) {
var $within = $(element),
selector = $within.attr('data-equal-height'),
$children = $(selector, $within);
$children.each( function() {function () {
$(this).css('min-height', '');
}};
};
return this.each( function () {
make_disequal_height(this);
});
};
})( jQuery );