| Current Path : /home/rtorresani/www/vendor/magento/module-user/view/adminhtml/web/js/ |
| Current File : //home/rtorresani/www/vendor/magento/module-user/view/adminhtml/web/js/delete-user-account.js |
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
define([
'jquery'
], function ($) {
'use strict';
var postData;
return function (params, elem) {
elem.on('click', function () {
postData = {
'data': {
'user_id': params.objId,
'current_password': $('[name="current_password"]').val()
}
};
if ($.validator.validateElement($('[name="current_password"]'))) {
window.deleteConfirm(params.message, params.url, postData);
}
});
};
});