diff options
author | Kevin Wood-Friend <kevin.wood.friend@gmail.com> | 2014-08-12 14:25:26 -0400 |
---|---|---|
committer | Kevin Wood-Friend <kevin.wood.friend@gmail.com> | 2014-08-12 14:25:26 -0400 |
commit | 09c4b1a68df1c32d6f54f967315fe8ee957125b7 (patch) | |
tree | ef941cb6c38e9115ec6d2d72f8da5656d816bbbc | |
parent | b6f612a8b17a64043e758edb97dad887d906f18f (diff) | |
download | jquery-match-height-09c4b1a68df1c32d6f54f967315fe8ee957125b7.zip jquery-match-height-09c4b1a68df1c32d6f54f967315fe8ee957125b7.tar.gz jquery-match-height-09c4b1a68df1c32d6f54f967315fe8ee957125b7.tar.bz2 |
Improve support when concatenated or minified
Prevents issues when concatenated or minified with other scripts.
-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 f0bbeb8..1f8430c 100644 --- a/jquery.matchHeight.js +++ b/jquery.matchHeight.js @@ -4,7 +4,7 @@ * License: MIT */ -(function($) { +;(function($) { $.fn.matchHeight = function(byRow) { |