diff options
Diffstat (limited to 'jquery.matchHeight.js')
-rw-r--r-- | jquery.matchHeight.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jquery.matchHeight.js b/jquery.matchHeight.js index e0dd755..0ec4b85 100644 --- a/jquery.matchHeight.js +++ b/jquery.matchHeight.js @@ -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');
});
});
|