url-rewrite-validation.js 352 B

12345678910111213141516171819
  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. });