Make WordPress Core

Ticket #28963: 28963.2.patch

File 28963.2.patch, 2.6 KB (added by ocean90, 10 years ago)
  • src/wp-includes/js/media-grid.js

     
    226226                },
    227227
    228228                sidebarVisibility: function() {
    229                         if ( this.errors.length ) {
    230                                 this.browserView.$( '.media-sidebar' ).show();
    231                         } else {
    232                                 this.browserView.$( '.media-sidebar' ).hide();
    233                         }
     229                        this.browserView.$( '.media-sidebar' ).toggle( !! this.errors.length );
    234230                },
    235231
    236232                bindDeferred: function() {
  • src/wp-includes/js/media-views.js

     
    59795979                        this.uploader = new media.view.UploaderInline({
    59805980                                controller: this.controller,
    59815981                                status:     false,
    5982                                 message:    l10n.noItemsFound,
     5982                                message:    this.controller.isModeActive( 'grid' ) ? '' : l10n.noItemsFound,
    59835983                                canClose:   this.controller.isModeActive( 'grid' )
    59845984                        });
    59855985
     
    60116011
    60126012                        this.views.add( this.attachments );
    60136013
    6014                         this.attachmentsNoResults = new media.View({
    6015                                 controller: this.controller,
    6016                                 tagName: 'p'
    6017                         });
    60186014
    6019                         this.attachmentsNoResults.$el.addClass( 'hidden no-media' );
    6020                         this.attachmentsNoResults.$el.html( l10n.noMedia );
     6015                        if ( this.controller.isModeActive( 'grid' ) ) {
     6016                                this.attachmentsNoResults = new media.View({
     6017                                        controller: this.controller,
     6018                                        tagName: 'p'
     6019                                });
    60216020
    6022                         this.views.add( this.attachmentsNoResults );
     6021                                this.attachmentsNoResults.$el.addClass( 'hidden no-media' );
     6022                                this.attachmentsNoResults.$el.html( l10n.noMedia );
     6023
     6024                                this.views.add( this.attachmentsNoResults );
     6025                        }
    60236026                },
    60246027
    60256028                createSidebar: function() {
  • src/wp-includes/media-template.php

     
    185185
    186186                <?php else : ?>
    187187                        <div class="upload-ui">
    188                                 <h3 class="upload-instructions drop-instructions"><?php _e( 'Drop files here' ); ?></h3>
     188                                <h3 class="upload-instructions drop-instructions"><?php _e( 'Drop files anywhere to upload' ); ?></h3>
    189189                                <p class="upload-instructions drop-instructions"><?php _ex( 'or', 'Uploader: Drop files here - or - Select Files' ); ?></p>
    190                                 <a href="#" class="browser button"><?php _e( 'Select Files' ); ?></a>
     190                                <a href="#" class="browser button button-hero"><?php _e( 'Select Files' ); ?></a>
    191191                        </div>
    192192
    193193                        <div class="upload-inline-status"></div>