![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-paypal/view/frontend/web/js/in-context/ |
/** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ 'jquery' ], function ($) { 'use strict'; var dfd = $.Deferred(); /** * Loads the PayPal SDK object * @param {String} paypalUrl - the url of the PayPal SDK * @param {Array} dataAttributes - Array of the Attributes for PayPal SDK Script tag */ return function loadPaypalScript(paypalUrl, dataAttributes) { //configuration for loaded PayPal script require.config({ paths: { paypalSdk: paypalUrl }, shim: { paypalSdk: { exports: 'paypal' } }, attributes: { 'paypalSdk': dataAttributes }, /** * Add attributes under Paypal SDK Script tag */ onNodeCreated: function (node, config, name) { if (config.attributes && config.attributes[name]) { $.each(dataAttributes, function (index, elem) { node.setAttribute(index, elem); }); } } }); if (dfd.state() !== 'resolved') { require(['paypalSdk'], function (paypalObject) { dfd.resolve(paypalObject); }); } return dfd.promise(); }; });