laipower/wp-content/plugins/menu-icons/vendor/codeinwp/icon-picker/js/src/media/views/browser.js

16 lines
298 B
JavaScript

/**
* Methods for the browser views
*/
var IconPickerBrowser = {
createSidebar: function() {
this.sidebar = new this.options.SidebarView({
controller: this.controller,
selection: this.options.selection
});
this.views.add( this.sidebar );
}
};
module.exports = IconPickerBrowser;