product-list.js 259 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 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;