Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-paypal/view/adminhtml/web/js/predicate/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-paypal/view/adminhtml/web/js/predicate/confirm.js

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

define(['underscore'], function (_) {
    'use strict';

    return function (solution, message, argument) {
        var isConfirm = false;

        _.every(argument, function (name) {
            if (solution.solutionsElements[name] &&
                solution.solutionsElements[name].find(solution.enableButton).val() == 1 //eslint-disable-line eqeqeq
            ) {
                isConfirm = true;

                return !isConfirm;
            }

            return !isConfirm;
        }, this);

        if (isConfirm) {
            return confirm(message); //eslint-disable-line no-alert
        }

        return true;
    };
});