From 57e0fb81a124c34580fbe61a02463a3dede7ec84 Mon Sep 17 00:00:00 2001 From: Nicolas Coden Date: Sun, 4 Dec 2016 19:30:12 +0100 Subject: [PATCH] Fix #8631 - Equalizer events in UpperCase Update the doc about Equalizer events. --- js/foundation.equalizer.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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'); } -- 2.47.2