delete-user-account.js 654 B

12345678910111213141516171819202122232425262728
  1. /**
  2. * Copyright © Magento, Inc. All rights reserved.
  3. * See COPYING.txt for license details.
  4. */
  5. define([
  6. 'jquery'
  7. ], function ($) {
  8. 'use strict';
  9. var postData;
  10. return function (params, elem) {
  11. elem.on('click', function () {
  12. postData = {
  13. 'data': {
  14. 'user_id': params.objId,
  15. 'current_password': $('[name="current_password"]').val()
  16. }
  17. };
  18. if ($.validator.validateElement($('[name="current_password"]'))) {
  19. window.deleteConfirm(params.message, params.url, postData);
  20. }
  21. });
  22. };
  23. });