Your IP : 216.73.216.43


Current Path : /proc/thread-self/cwd/static/frontend/Magento/autumnus/it_IT/Magento_Review/js/
Upload File :
Current File : //proc/thread-self/cwd/static/frontend/Magento/autumnus/it_IT/Magento_Review/js/validate-review.js

/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

define([
    'jquery',
    '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.'));
});