Make WordPress Core

Ticket #22713: 22713.3.diff

File 22713.3.diff, 2.3 KB (added by ocean90, 12 years ago)
  • wp-includes/js/media-views.js

     
    15621562                                        toolbar:    'main-gallery',
    15631563                                        filterable: 'uploaded',
    15641564                                        multiple:   'add',
    1565                                         editable:   true,
     1565                                        editable:   false,
    15661566
    15671567                                        library:  media.query( _.defaults({
    15681568                                                type: 'image'
     
    36093609
    36103610                        this.views.set( '.selection-view', this.attachments );
    36113611                        this.collection.on( 'add remove reset', this.refresh, this );
     3612                        this.controller.on( 'content:activate', this.refresh, this );
    36123613                },
    36133614
    36143615                ready: function() {
     
    36203621                        if ( ! this.$el.children().length )
    36213622                                return;
    36223623
     3624                        var collection = this.collection,
     3625                                editing = 'edit-selection' === this.controller.content.mode();
     3626
    36233627                        // If nothing is selected, display nothing.
    3624                         this.$el.toggleClass( 'empty', ! this.collection.length );
    3625                         this.$('.count').text( this.collection.length + ' ' + l10n.selected );
     3628                        this.$el.toggleClass( 'empty', ! collection.length );
     3629                        this.$el.toggleClass( 'one', 1 === collection.length );
     3630                        this.$el.toggleClass( 'editing', editing );
     3631
     3632                        this.$('.count').text( collection.length + ' ' + l10n.selected );
    36263633                },
    36273634
    36283635                edit: function( event ) {
  • wp-includes/css/media-views.css

     
    11161116        vertical-align: top;
    11171117}
    11181118
    1119 .media-selection.empty {
     1119.media-selection.empty,
     1120.media-selection.editing {
    11201121        display: none;
    11211122}
    11221123
     1124.media-selection.one .edit-selection {
     1125        display: none;
     1126}
     1127
    11231128.media-selection .count {
    11241129        display: block;
    11251130        padding-top: 12px;
     
    11471152
    11481153.media-selection .selection-info a:last-child {
    11491154        border-right: 0;
     1155        margin-right: 0;
    11501156}
    11511157
    11521158.media-selection .selection-info .clear-selection {
  • wp-includes/css/media-views-rtl.css

     
    232232.media-selection .selection-info a:last-child {
    233233        border-right: 1px;
    234234        border-left: 0;
     235        margin-left: 0;
     236        margin-right: -8px;
    235237}
    236238
    237239.media-selection:after {