13 lines
274 B

define([
"jquery",
"matchheight"
], function($, matchheight){
"use strict";
return {
productheight: function() {
$('.product-items').each(function() {
$(this).children('').matchHeight();
});
}
}
});