Changeset 45849 for branches/5.2
- Timestamp:
- 08/19/2019 04:55:01 AM (5 years ago)
- Location:
- branches/5.2
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.2
-
branches/5.2/src/js/media/views/attachment/details.js
r44900 r45849 19 19 template: wp.template('attachment-details'), 20 20 21 attributes: function() { 22 return { 23 'tabIndex': 0, 24 'data-id': this.model.get( 'id' ) 25 }; 26 }, 21 /* 22 * Reset all the attributes inherited from Attachment including role=checkbox, 23 * tabindex, etc., as they are inappropriate for this view. See #47458 and [30483] / #30390. 24 */ 25 attributes: {}, 27 26 28 27 events: { -
branches/5.2/src/js/media/views/frame/edit-attachments.js
r43309 r45849 81 81 if ( this.options.modal ) { 82 82 this.modal = new wp.media.view.Modal({ 83 controller: this, 84 title: this.options.title 83 controller: this, 84 title: this.options.title, 85 hasCloseButton: false 85 86 }); 86 87 -
branches/5.2/src/js/media/views/modal.js
r44639 r45849 27 27 initialize: function() { 28 28 _.defaults( this.options, { 29 container: document.body, 30 title: '', 31 propagate: true 29 container: document.body, 30 title: '', 31 propagate: true, 32 hasCloseButton: true 32 33 }); 33 34 … … 41 42 prepare: function() { 42 43 return { 43 title: this.options.title 44 title: this.options.title, 45 hasCloseButton: this.options.hasCloseButton 44 46 }; 45 47 }, -
branches/5.2/src/wp-includes/media-template.php
r45335 r45849 196 196 <script type="text/html" id="tmpl-media-modal"> 197 197 <div tabindex="0" class="<?php echo $class; ?>"> 198 <button type="button" class="media-modal-close"><span class="media-modal-icon"><span class="screen-reader-text"><?php _e( 'Close media panel' ); ?></span></span></button> 198 <# if ( data.hasCloseButton ) { #> 199 <button type="button" class="media-modal-close"><span class="media-modal-icon"><span class="screen-reader-text"><?php _e( 'Close dialog' ); ?></span></span></button> 200 <# } #> 199 201 <div class="media-modal-content"></div> 200 202 </div> … … 320 322 <button class="left dashicons <# if ( ! data.hasPrevious ) { #> disabled <# } #>"><span class="screen-reader-text"><?php _e( 'Edit previous media item' ); ?></span></button> 321 323 <button class="right dashicons <# if ( ! data.hasNext ) { #> disabled <# } #>"><span class="screen-reader-text"><?php _e( 'Edit next media item' ); ?></span></button> 324 <button type="button" class="media-modal-close"><span class="media-modal-icon"><span class="screen-reader-text"><?php _e( 'Close dialog' ); ?></span></span></button> 322 325 </div> 323 326 <div class="media-frame-title"></div>
Note: See TracChangeset
for help on using the changeset viewer.