123456789101112131415161718 |
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- define([
- 'jquery',
- 'jquery/ui',
- 'jquery/validate',
- 'mage/translate'
- ], function ($) {
- 'use strict';
- $.validator.addMethod(
- 'rating-required', function (value) {
- return value !== undefined;
- }, $.mage.__('Please select one of each of the ratings above.'));
- });
|