mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-10 18:37:58 +01:00
d5b80a2be2
Fix the errant back-compat assignment for `wp.media.view.Frame`. See #28510. Built from https://develop.svn.wordpress.org/trunk@31494 git-svn-id: http://core.svn.wordpress.org/trunk@31475 1a063a9b-81f0-0310-95a4-ce76da25c4cd
44 lines
1.0 KiB
JavaScript
44 lines
1.0 KiB
JavaScript
/*globals wp */
|
|
|
|
/**
|
|
* wp.media.view.Attachment.Details.TwoColumn
|
|
*
|
|
* A similar view to media.view.Attachment.Details
|
|
* for use in the Edit Attachment modal.
|
|
*
|
|
* @class
|
|
* @augments wp.media.view.Attachment.Details
|
|
* @augments wp.media.view.Attachment
|
|
* @augments wp.media.View
|
|
* @augments wp.Backbone.View
|
|
* @augments Backbone.View
|
|
*/
|
|
var Details = wp.media.view.Attachment.Details,
|
|
TwoColumn;
|
|
|
|
TwoColumn = Details.extend({
|
|
template: wp.template( 'attachment-details-two-column' ),
|
|
|
|
editAttachment: function( event ) {
|
|
event.preventDefault();
|
|
this.controller.content.mode( 'edit-image' );
|
|
},
|
|
|
|
/**
|
|
* Noop this from parent class, doesn't apply here.
|
|
*/
|
|
toggleSelectionHandler: function() {},
|
|
|
|
render: function() {
|
|
Details.prototype.render.apply( this, arguments );
|
|
|
|
wp.media.mixin.removeAllPlayers();
|
|
this.$( 'audio, video' ).each( function (i, elem) {
|
|
var el = wp.media.view.MediaDetails.prepareSrc( elem );
|
|
new window.MediaElementPlayer( el, wp.media.mixin.mejsSettings );
|
|
} );
|
|
}
|
|
});
|
|
|
|
module.exports = TwoColumn;
|