![]() 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/cartforge.co/vendor/magento/module-multishipping/view/frontend/web/js/ |
/** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ 'jquery', 'jquery-ui-modules/widget', 'mage/translate' ], function ($) { 'use strict'; $.widget('mage.orderOverview', { options: { opacity: 0.5, // CSS opacity for the 'Place Order' button when it's clicked and then disabled. pleaseWaitLoader: 'span.please-wait', // 'Submitting order information...' Ajax loader. placeOrderSubmit: 'button[type="submit"]', // The 'Place Order' button. agreements: '.checkout-agreements' // Container for all of the checkout agreements and terms/conditions }, /** * Bind a submit handler to the form. * @private */ _create: function () { this.element.on('submit', $.proxy(this._showLoader, this)); }, /** * Verify that all agreements and terms/conditions are checked. Show the Ajax loader. Disable * the submit button (i.e. Place Order). * @return {Boolean} * @private */ _showLoader: function () { if ($(this.options.agreements).find('input[type="checkbox"]:not(:checked)').length > 0) { return false; } this.element.find(this.options.pleaseWaitLoader).show().end() .find(this.options.placeOrderSubmit).prop('disabled', true).css('opacity', this.options.opacity); return true; } }); return $.mage.orderOverview; });