Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-media-gallery-ui/view/adminhtml/web/js/
Upload File :
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;
        }
    });
});