From: Nicolas Coden Date: Sun, 4 Dec 2016 18:30:12 +0000 (+0100) Subject: Fix #8631 - Equalizer events in UpperCase X-Git-Tag: v6.3.0-rc2~16^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F9445%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Fix #8631 - Equalizer events in UpperCase Update the doc about Equalizer events. --- diff --git a/js/foundation.equalizer.js b/js/foundation.equalizer.js index c52187a03..0c619df7a 100644 --- a/js/foundation.equalizer.js +++ b/js/foundation.equalizer.js @@ -236,8 +236,8 @@ class Equalizer { * Changes the CSS height property of each child in an Equalizer parent to match the tallest by row * @param {array} groups - An array of heights of children within Equalizer container grouped by row with element,height and max as last child * @fires Equalizer#preequalized - * @fires Equalizer#preequalizedRow - * @fires Equalizer#postequalizedRow + * @fires Equalizer#preequalizedrow + * @fires Equalizer#postequalizedrow * @fires Equalizer#postequalized */ applyHeightByRow(groups) { @@ -254,7 +254,7 @@ class Equalizer { } /** * Fires before the heights per row are applied - * @event Equalizer#preequalizedRow + * @event Equalizer#preequalizedrow */ this.$element.trigger('preequalizedrow.zf.equalizer'); for (var j = 0, lenJ = (groupsILength-1); j < lenJ ; j++) { @@ -262,7 +262,7 @@ class Equalizer { } /** * Fires when the heights per row have been applied - * @event Equalizer#postequalizedRow + * @event Equalizer#postequalizedrow */ this.$element.trigger('postequalizedrow.zf.equalizer'); }