Fix wrong indentation in [29136].

Built from https://develop.svn.wordpress.org/trunk@29172


git-svn-id: http://core.svn.wordpress.org/trunk@28956 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2014-07-14 20:09:14 +00:00
parent d8ffbb19fc
commit e45cc8b5e2
2 changed files with 10 additions and 12 deletions

View File

@ -35,10 +35,10 @@ if ( 'grid' === $mode ) {
add_screen_option( 'mime', array( 'label' => __( 'Mime-type' ) ) );
get_current_screen()->add_help_tab( array(
'id' => 'overview',
'title' => __( 'Overview' ),
'content' =>
'<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>'
'id' => 'overview',
'title' => __( 'Overview' ),
'content' =>
'<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>'
) );
get_current_screen()->set_help_sidebar(

View File

@ -440,10 +440,8 @@
this.on( 'content:render:edit-metadata', this.editMetadataContent, this );
this.on( 'content:render:edit-image', this.editImageContentUgh, this );
this.on( 'close', this.detach );
this.on( 'router:create', this.createRouter, this );
this.on( 'router:render', this.browseRouter, this );
this.on( 'router:create', this.createRouter, this );
this.on( 'router:render', this.browseRouter, this );
this.options.hasPrevious = this.hasPrevious();
this.options.hasNext = this.hasNext();
@ -560,11 +558,11 @@
// Only need a tab to Edit Image for images.
if ( 'undefined' !== typeof this.model && this.model.get( 'type' ) === 'image' ) {
view.set({
'edit-image': {
'edit-image': {
text: l10n.editImage,
priority: 40
}
});
priority: 40
}
});
}
},