validate-review.js 412 B

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