![]() 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-customer/view/adminhtml/web/edit/ |
/** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ 'jquery', 'Magento_Ui/js/modal/confirm', 'mage/translate' ], function ($, confirm) { 'use strict'; /** * @param {String} url * @returns {Object} */ function getForm(url) { return $('<form>', { 'action': url, 'method': 'POST' }).append($('<input>', { 'name': 'form_key', 'value': window.FORM_KEY, 'type': 'hidden' })); } $('#customer-edit-delete-button').on('click', function () { var msg = $.mage.__('Are you sure you want to do this?'), url = $('#customer-edit-delete-button').data('url'); confirm({ 'content': msg, 'actions': { /** * 'Confirm' action handler. */ confirm: function () { getForm(url).appendTo('body').submit(); } } }); return false; }); });