Make WordPress Core

Changeset 29172


Ignore:
Timestamp:
07/14/2014 08:08:38 PM (11 years ago)
Author:
ocean90
Message:

Fix wrong indentation in [29136].

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/upload.php

    r29136 r29172  
    3636
    3737    get_current_screen()->add_help_tab( array(
    38     'id'        => 'overview',
    39     'title'     => __( 'Overview' ),
    40     'content'   =>
    41         '<p>' . __( 'All the files you&#8217;ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the Screen Options tab to customize the display of this screen.' ) . '</p>'
     38        'id'        => 'overview',
     39        'title'     => __( 'Overview' ),
     40        'content'   =>
     41            '<p>' . __( 'All the files you&#8217;ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the Screen Options tab to customize the display of this screen.' ) . '</p>'
    4242    ) );
    4343
  • trunk/src/wp-includes/js/media-grid.js

    r29136 r29172  
    441441            this.on( 'content:render:edit-image', this.editImageContentUgh, this );
    442442            this.on( 'close', this.detach );
    443 
    444 
    445                 this.on( 'router:create', this.createRouter, this );
    446                 this.on( 'router:render', this.browseRouter, this );
     443            this.on( 'router:create', this.createRouter, this );
     444            this.on( 'router:render', this.browseRouter, this );
    447445
    448446            this.options.hasPrevious = this.hasPrevious();
     
    561559            if ( 'undefined' !== typeof this.model && this.model.get( 'type' ) === 'image' ) {
    562560                view.set({
    563                 'edit-image': {
     561                    'edit-image': {
    564562                        text:     l10n.editImage,
    565                     priority: 40
    566                 }
    567             });
     563                        priority: 40
     564                    }
     565                });
    568566            }
    569567        },
Note: See TracChangeset for help on using the changeset viewer.