Changeset 48232 for trunk/src/wp-includes/media-template.php
- Timestamp:
- 06/30/2020 01:14:05 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/media-template.php
r47808 r48232 501 501 <# } #> 502 502 <span class="setting" data-setting="url"> 503 <label for="attachment-details-two-column-copy-link" class="name"><?php _e( 'Copy Link' ); ?></label> 504 <input type="text" id="attachment-details-two-column-copy-link" value="{{ data.url }}" readonly /> 503 <label for="attachment-details-two-column-copy-link" class="name"><?php _e( 'File URL:' ); ?></label> 504 <input type="text" class="attachment-details-copy-link" id="attachment-details-two-column-copy-link" value="{{ data.url }}" readonly /> 505 <span class="copy-to-clipboard-container"> 506 <button type="button" class="button button-small copy-attachment-url" data-clipboard-target="#attachment-details-two-column-copy-link"><?php _e( 'Copy URL' ); ?></button> 507 <span class="success hidden" aria-hidden="true"><?php _e( 'Copied!' ); ?></span> 508 </span> 505 509 </span> 506 510 <div class="attachment-compat"></div> … … 688 692 </span> 689 693 <span class="setting" data-setting="url"> 690 <label for="attachment-details-copy-link" class="name"><?php _e( 'Copy Link' ); ?></label> 691 <input type="text" id="attachment-details-copy-link" value="{{ data.url }}" readonly /> 694 <label for="attachment-details-copy-link" class="name"><?php _e( 'File URL:' ); ?></label> 695 <input type="text" class="attachment-details-copy-link" id="attachment-details-copy-link" value="{{ data.url }}" readonly /> 696 <div class="copy-to-clipboard-container"> 697 <button type="button" class="button button-small copy-attachment-url" data-clipboard-target="#attachment-details-copy-link"><?php _e( 'Copy URL' ); ?></button> 698 <span class="success hidden" aria-hidden="true"><?php _e( 'Copied!' ); ?></span> 699 </div> 692 700 </span> 693 701 </script>
Note: See TracChangeset
for help on using the changeset viewer.