* 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) {
}
/**
* 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++) {
}
/**
* Fires when the heights per row have been applied
- * @event Equalizer#postequalizedRow
+ * @event Equalizer#postequalizedrow
*/
this.$element.trigger('postequalizedrow.zf.equalizer');
}