WordPress/wp-includes/js/media/views/attachments/selection.js

31 lines
698 B
JavaScript
Raw Normal View History

/*globals wp, _ */
/**
* wp.media.view.Attachments.Selection
*
* @class
* @augments wp.media.view.Attachments
* @augments wp.media.View
* @augments wp.Backbone.View
* @augments Backbone.View
*/
var Attachments = wp.media.view.Attachments,
Selection;
Selection = Attachments.extend({
events: {},
initialize: function() {
_.defaults( this.options, {
sortable: false,
resize: false,
// The single `Attachment` view to be used in the `Attachments` view.
AttachmentView: wp.media.view.Attachment.Selection
});
// Call 'initialize' directly on the parent class.
return Attachments.prototype.initialize.apply( this, arguments );
}
});
module.exports = Selection;