Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding a minimum height option #117

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion dist/jquery.matchHeight.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@
byRow: true,
property: 'height',
target: null,
remove: false
remove: false,
minHeight: 0
};

if (typeof options === 'object') {
Expand Down Expand Up @@ -278,6 +279,12 @@
verticalPadding += _parse($that.css('padding-top')) + _parse($that.css('padding-bottom'));
}

// set height to minimum height, if less than element
if ( targetHeight < opts.minHeight )
{
targetHeight = opts.minHeight;
}

// set the height (accounting for padding and border)
$that.css(opts.property, (targetHeight - verticalPadding) + 'px');
});
Expand Down