Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

35 строки
754 B

  1. /**
  2. * Copyright © Magento, Inc. All rights reserved.
  3. * See COPYING.txt for license details.
  4. */
  5. define([
  6. 'uiElement',
  7. 'jquery'
  8. ], function (Element, $) {
  9. 'use strict';
  10. return Element.extend({
  11. defaults: {
  12. containerSelector: '.media-gallery-container',
  13. masonryComponentPath: 'media_gallery_listing.media_gallery_listing.media_gallery_columns',
  14. modules: {
  15. masonry: '${ $.masonryComponentPath }'
  16. }
  17. },
  18. /**
  19. * Init component
  20. *
  21. * @return {exports}
  22. */
  23. initialize: function () {
  24. this._super();
  25. $(this.containerSelector).applyBindings();
  26. return this;
  27. }
  28. });
  29. });