"addVariantToCart": function(product) { product.model.selectedQuantity = 1; var minQty = $('#product-component-{{page.item_id}}').data('minqty'); if(product.cart.model.lineItemCount < minQty) { return product.updateQuantity(function() { return minQty - product.cart.model.lineItemCount; }); } }