diff options
author | Korri <korrigan33@gmail.com> | 2013-08-09 11:54:21 -0400 |
---|---|---|
committer | Korri <korrigan33@gmail.com> | 2013-08-09 11:54:21 -0400 |
commit | 100979cba3754ecdb305b022bc52151be04a091c (patch) | |
tree | e4c9967f546c81587fb3ae574e5f8be0c19c2f06 | |
parent | 107b11cb5d2a7dba153f7efc7f4900b40660d6dd (diff) | |
download | jQuery.equalHeights-100979cba3754ecdb305b022bc52151be04a091c.zip jQuery.equalHeights-100979cba3754ecdb305b022bc52151be04a091c.tar.gz jQuery.equalHeights-100979cba3754ecdb305b022bc52151be04a091c.tar.bz2 |
Updated version number
-rw-r--r-- | jquery.equalheights.min.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jquery.equalheights.min.js b/jquery.equalheights.min.js index 660349e..1178a42 100644 --- a/jquery.equalheights.min.js +++ b/jquery.equalheights.min.js @@ -6,6 +6,6 @@ * Uses the same license as jQuery, see: * http://docs.jquery.com/License * - * @version 1.3 + * @version 1.4 */ (function($){$.fn.equalHeights=function(){var maxHeight=0,$this=$(this);$this.each(function(){var height=$(this).innerHeight();if(height>maxHeight){maxHeight=height}});return $this.height(maxHeight)};var target=$('[data-heights="equal"]').attr('data-targets'),init='[data-heights="equal"] '+target;$(init).equalHeights()})(jQuery); |