Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

20 linhas
352 B

  1. /**
  2. * Copyright © Magento, Inc. All rights reserved.
  3. * See COPYING.txt for license details.
  4. */
  5. define([
  6. 'jquery',
  7. 'mage/backend/form',
  8. 'mage/backend/validation'
  9. ], function ($) {
  10. 'use strict';
  11. return function (data, element) {
  12. $(element).form().validation({
  13. validationUrl: data.url
  14. });
  15. };
  16. });