Changeset 53361
- Timestamp:
- 05/07/2022 03:08:24 AM (2 years ago)
- Location:
- branches/6.0
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.0
-
branches/6.0/src/js/_enqueues/admin/inline-edit-post.js
r53096 r53361 294 294 editRow = $('#inline-edit').clone(true); 295 295 $( 'td', editRow ).attr( 'colspan', $( 'th:visible, td:visible', '.widefat:first thead' ).length ); 296 297 // Remove the ID from the copied row and let the `for` attribute reference the hidden ID. 298 $( 'td', editRow ).find('#quick-edit-legend').removeAttr('id'); 299 $( 'td', editRow ).find('p[id^="quick-edit-"]').removeAttr('id'); 296 300 297 301 $(t.what+id).removeClass('is-expanded').hide().after(editRow).after('<tr class="hidden"></tr>'); -
branches/6.0/src/wp-admin/includes/class-wp-posts-list-table.php
r53116 r53361 1612 1612 <tr id="<?php echo $bulk ? 'bulk-edit' : 'inline-edit'; ?>" class="<?php echo $classes; ?>" style="display: none"> 1613 1613 <td colspan="<?php echo $this->get_column_count(); ?>" class="colspanchange"> 1614 <div class="inline-edit-wrapper" role="region" aria-labelledby=" inline-edit-legend">1614 <div class="inline-edit-wrapper" role="region" aria-labelledby="<?php echo $bulk ? 'bulk' : 'quick'; ?>-edit-legend"> 1615 1615 <fieldset class="inline-edit-col-left"> 1616 <legend class="inline-edit-legend" id=" inline-edit-legend"><?php echo $bulk ? __( 'Bulk Edit' ) : __( 'Quick Edit' ); ?></legend>1616 <legend class="inline-edit-legend" id="<?php echo $bulk ? 'bulk' : 'quick'; ?>-edit-legend"><?php echo $bulk ? __( 'Bulk Edit' ) : __( 'Quick Edit' ); ?></legend> 1617 1617 <div class="inline-edit-col"> 1618 1618
Note: See TracChangeset
for help on using the changeset viewer.