Skip to content

Commit

Permalink
fix for unitless properties by forcing px, closes #64
Browse files Browse the repository at this point in the history
  • Loading branch information
liabru committed May 14, 2015
1 parent cc9c416 commit d8cc365
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jquery.matchHeight.js
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@
}

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

Expand Down

0 comments on commit d8cc365

Please sign in to comment.