12345678910111213141516171819 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /**
- * @var \Magento\Paypal\Block\Adminhtml\System\Config\ResolutionRules $block
- */
- ?>
- <script>
- require([
- "Magento_Paypal/js/solutions",
- "domReady!"
- ], function (Solutions) {
- var solutions = new Solutions({config: {solutions: <?= /* @noEscape */ $block->getJson() ?>}});
- });
- </script>
|