summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKorri <korrigan33@gmail.com>2013-08-09 11:54:21 -0400
committerKorri <korrigan33@gmail.com>2013-08-09 11:54:21 -0400
commit100979cba3754ecdb305b022bc52151be04a091c (patch)
treee4c9967f546c81587fb3ae574e5f8be0c19c2f06
parent107b11cb5d2a7dba153f7efc7f4900b40660d6dd (diff)
downloadjQuery.equalHeights-100979cba3754ecdb305b022bc52151be04a091c.zip
jQuery.equalHeights-100979cba3754ecdb305b022bc52151be04a091c.tar.gz
jQuery.equalHeights-100979cba3754ecdb305b022bc52151be04a091c.tar.bz2
Updated version number
-rw-r--r--jquery.equalheights.min.js2
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);