/** * 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 $('
', { 'action': url, 'method': 'POST' }).append($('', { 'name': 'form_key', 'value': window.FORM_KEY, 'type': 'hidden' })); } $('#customer-edit-delete-button').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; }); });