Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

18 righe
395 B

  1. /**
  2. * Copyright © Magento, Inc. All rights reserved.
  3. * See COPYING.txt for license details.
  4. */
  5. define([
  6. 'jquery',
  7. 'jquery/validate',
  8. 'mage/translate'
  9. ], function ($) {
  10. 'use strict';
  11. $.validator.addMethod(
  12. 'rating-required', function (value) {
  13. return value !== undefined;
  14. }, $.mage.__('Please select one of each of the ratings above.'));
  15. });