From 6312e4af27f5af3564faf8786b4280fea25f4809 Mon Sep 17 00:00:00 2001 From: Daryl Koopersmith Date: Tue, 9 Oct 2012 00:27:14 +0000 Subject: [PATCH] On second thought, we're going to need the library-specific attachment view. see #21390, [22138]. git-svn-id: http://core.svn.wordpress.org/trunk@22139 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/js/media-views.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/wp-includes/js/media-views.js b/wp-includes/js/media-views.js index 5af98e67bc..09676e52b1 100644 --- a/wp-includes/js/media-views.js +++ b/wp-includes/js/media-views.js @@ -519,6 +519,13 @@ } }); + /** + * wp.media.view.Attachment.Library + */ + media.view.Attachment.Library = media.view.Attachment.extend({ + className: 'attachment library' + }); + /** * wp.media.view.Attachment.Gallery */ @@ -630,6 +637,11 @@ */ media.view.Workspace.Library = media.view.Workspace.extend({ + attachmentsView: { + // The single `Attachment` view to be used in the `Attachments` view. + AttachmentView: media.view.Attachment.Library + }, + initialize: function() { media.view.Workspace.prototype.initialize.apply( this, arguments );