request-send.js 504 B

123456789101112131415161718192021222324
  1. /**
  2. * Copyright © Magento, Inc. All rights reserved.
  3. * See COPYING.txt for license details.
  4. */
  5. define([
  6. 'mageUtils',
  7. 'Magento_Ui/js/form/components/button'
  8. ], function (utils, Button) {
  9. 'use strict';
  10. return Button.extend({
  11. /**
  12. * Creates and submits form for Guarantee create/cancel
  13. */
  14. sendRequest: function () {
  15. utils.submit({
  16. url: this.requestURL,
  17. data: this.data
  18. });
  19. }
  20. });
  21. });