You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
381 B

  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. return function (config, element) {
  10. $(element).on('submit', function () {
  11. if ($(this).valid()) {
  12. $(this).find('.submit').attr('disabled', true);
  13. }
  14. });
  15. };
  16. });