Changeset 29172
- Timestamp:
- 07/14/2014 08:08:38 PM (11 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/upload.php
r29136 r29172 36 36 37 37 get_current_screen()->add_help_tab( array( 38 'id' => 'overview',39 'title' => __( 'Overview' ),40 'content' =>41 '<p>' . __( 'All the files you’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’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>' 42 42 ) ); 43 43 -
trunk/src/wp-includes/js/media-grid.js
r29136 r29172 441 441 this.on( 'content:render:edit-image', this.editImageContentUgh, this ); 442 442 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 ); 447 445 448 446 this.options.hasPrevious = this.hasPrevious(); … … 561 559 if ( 'undefined' !== typeof this.model && this.model.get( 'type' ) === 'image' ) { 562 560 view.set({ 563 'edit-image': {561 'edit-image': { 564 562 text: l10n.editImage, 565 priority: 40566 }567 });563 priority: 40 564 } 565 }); 568 566 } 569 567 },
Note: See TracChangeset
for help on using the changeset viewer.