| Current Path : /home/rtorresani/www/vendor/magento/module-media-gallery-ui/view/adminhtml/web/js/ |
| Current File : //home/rtorresani/www/vendor/magento/module-media-gallery-ui/view/adminhtml/web/js/container.js |
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
define([
'uiElement',
'jquery'
], function (Element, $) {
'use strict';
return Element.extend({
defaults: {
containerSelector: '.media-gallery-container',
masonryComponentPath: 'media_gallery_listing.media_gallery_listing.media_gallery_columns',
modules: {
masonry: '${ $.masonryComponentPath }'
}
},
/**
* Init component
*
* @return {exports}
*/
initialize: function () {
this._super();
$(this.containerSelector).applyBindings();
return this;
}
});
});