summaryrefslogtreecommitdiffstats
path: root/jquery.equalheights.min.js
diff options
context:
space:
mode:
authorMatt Banks <mjbanks@gmail.com>2013-03-13 11:39:13 -0400
committerMatt Banks <mjbanks@gmail.com>2013-03-13 11:39:13 -0400
commitcca79d3ef9f6580aaf0cec92cf218827a036274c (patch)
tree3175c54eccc100adccdf37baafbfcbbd2ba518ad /jquery.equalheights.min.js
parent01fd250a3f64418bc89fc3aab5774bc60128bac8 (diff)
downloadjQuery.equalHeights-cca79d3ef9f6580aaf0cec92cf218827a036274c.zip
jQuery.equalHeights-cca79d3ef9f6580aaf0cec92cf218827a036274c.tar.gz
jQuery.equalHeights-cca79d3ef9f6580aaf0cec92cf218827a036274c.tar.bz2
properly return jQuery object for chainingv1.3
Diffstat (limited to 'jquery.equalheights.min.js')
-rw-r--r--jquery.equalheights.min.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jquery.equalheights.min.js b/jquery.equalheights.min.js
index 5bbdcd0..f2bd89b 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.2
+ * @version 1.3
*/
-(function(a){a.fn.equalHeights=function(){var b=0,c=a(this);c.each(function(){var c=a(this).innerHeight();c>b&&(b=c)}),c.height(b)}})(jQuery);
+(function(a){a.fn.equalHeights=function(){var b=0,c=a(this);return c.each(function(){var c=a(this).innerHeight();c>b&&(b=c)}),c.height(b)}})(jQuery);