requirejs-config.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /**
  2. * Mageplaza
  3. *
  4. * NOTICE OF LICENSE
  5. *
  6. * This source file is subject to the Mageplaza.com license that is
  7. * available through the world-wide-web at this URL:
  8. * https://www.mageplaza.com/LICENSE.txt
  9. *
  10. * DISCLAIMER
  11. *
  12. * Do not edit or add to this file if you wish to upgrade this extension to newer
  13. * version in the future.
  14. *
  15. * @category Mageplaza
  16. * @package Mageplaza_Core
  17. * @copyright Copyright (c) 2016-2018 Mageplaza (http://www.mageplaza.com/)
  18. * @license https://www.mageplaza.com/LICENSE.txt
  19. */
  20. var config = {
  21. paths: {
  22. 'mageplaza/core/jquery/popup': 'Mageplaza_Core/js/jquery.magnific-popup.min',
  23. 'mageplaza/core/owl.carousel': 'Mageplaza_Core/js/owl.carousel.min',
  24. 'mageplaza/core/bootstrap': 'Mageplaza_Core/js/bootstrap.min',
  25. mpIonRangeSlider: 'Mageplaza_Core/js/ion.rangeSlider.min',
  26. touchPunch: 'Mageplaza_Core/js/jquery.ui.touch-punch.min',
  27. mpDevbridgeAutocomplete: 'Mageplaza_Core/js/jquery.autocomplete.min'
  28. },
  29. shim: {
  30. "mageplaza/core/jquery/popup": ["jquery"],
  31. "mageplaza/core/owl.carousel": ["jquery"],
  32. "mageplaza/core/bootstrap": ["jquery"],
  33. mpIonRangeSlider: ["jquery"],
  34. mpDevbridgeAutocomplete: ["jquery"],
  35. touchPunch: ['jquery', 'jquery/ui']
  36. }
  37. };