Make WordPress Core

Ticket #28991: 28991.diff

File 28991.diff, 1.7 KB (added by ericlewis, 10 years ago)
  • src/wp-includes/js/media-grid.js

    diff --git a/src/wp-includes/js/media-grid.js b/src/wp-includes/js/media-grid.js
    index 449680b..82d500b 100644
    a b  
    440440                                controller: this,
    441441                                model:      this.model
    442442                        });
     443
     444                        /**
     445                         * Attach a subview to display fields added via the
     446                         * `attachment_fields_to_edit` filter.
     447                         */
     448                        contentRegion.view.views.set( '.attachment-compat', new media.view.AttachmentCompat({
     449                                controller: this,
     450                                model:      this.model
     451                        }) );
     452
    443453                        // Update browser url when navigating media details
    444454                        if ( this.model ) {
    445455                                this.gridRouter.navigate( this.gridRouter.baseUrl( '?item=' + this.model.id ) );
     
    678688                }
    679689        });
    680690
    681 }(jQuery, _, Backbone, wp));
    682  No newline at end of file
     691}(jQuery, _, Backbone, wp));
  • src/wp-includes/js/media-views.js

    diff --git a/src/wp-includes/js/media-views.js b/src/wp-includes/js/media-views.js
    index ef3e787..f034d20 100644
    a b  
    64076407        /**
    64086408         * wp.media.view.AttachmentCompat
    64096409         *
     6410         * A view to display fields added via the `attachment_fields_to_edit` filter.
     6411         *
    64106412         * @constructor
    64116413         * @augments wp.media.View
    64126414         * @augments wp.Backbone.View
  • src/wp-includes/media-template.php

    diff --git a/src/wp-includes/media-template.php b/src/wp-includes/media-template.php
    index b130c4c..edea012 100644
    a b function wp_print_media_templates() { 
    386386                                                <span class="value"><a href="{{ data.uploadedToLink }}">{{ data.uploadedToTitle }}</a></span>
    387387                                        </label>
    388388                                <# } #>
     389                                <div class="attachment-compat"></div>
    389390                        </div>
    390391
    391392                        <a class="view-attachment" href="{{ data.link }}"><?php _e( 'View attachment page' ); ?></a> |