product-list.js 259 Bytes
const $ = require('yoho-jquery');

function productlistWith() {
    let $productList = $('.product-list');

    $productList.each(function() {
        $(this).css('width', $(this).children().length * 8.5 + 'rem');
    });
}

module.exports = productlistWith;