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