/*! * Simple jQuery Equal Heights * * Copyright (c) 2013 Matt Banks * Dual licensed under the MIT and GPL licenses. * Uses the same license as jQuery, see: * http://docs.jquery.com/License * * @version 1.5.1 */ !function(t){t.fn.equalHeights=function(){var a=0,e=t(this);return e.each(function(){var e=t(this).innerHeight();e>a&&(a=e)}),e.css("height",a)},t("[data-equal]").each(function(){var a=t(this),e=a.data("equal");a.find(e).equalHeights()})}(jQuery);