bootstrap.js 384 B

123456789101112131415161718192021
  1. /**
  2. * Copyright © Magento, Inc. All rights reserved.
  3. * See COPYING.txt for license details.
  4. */
  5. define([
  6. 'jquery',
  7. 'mage/apply/main',
  8. 'Magento_Ui/js/lib/knockout/bootstrap'
  9. ], function ($, mage) {
  10. 'use strict';
  11. $.ajaxSetup({
  12. cache: false
  13. });
  14. /**
  15. * Init all components defined via data-mage-init attribute.
  16. */
  17. $(mage.apply);
  18. });