Changeset 61614
- Timestamp:
- 02/11/2026 09:09:12 PM (3 weeks ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
-
js/_enqueues/admin/site-health.js (modified) (2 diffs)
-
wp-admin/site-health-info.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/js/_enqueues/admin/site-health.js
r57231 r61614 45 45 var isExpanded = ( 'true' === $( this ).attr( 'aria-expanded' ) ); 46 46 47 48 49 50 47 51 if ( isExpanded ) { 48 52 $( this ).attr( 'aria-expanded', 'false' ); … … 51 55 $( this ).attr( 'aria-expanded', 'true' ); 52 56 $( '#' + $( this ).attr( 'aria-controls' ) ).attr( 'hidden', false ); 57 58 59 60 61 62 63 64 65 66 67 68 69 70 53 71 } 54 72 } ); -
trunk/src/wp-admin/site-health-info.php
r59859 r61614 74 74 ?> 75 75 <h3 class="health-check-accordion-heading"> 76 <button aria-expanded="false" class="health-check-accordion-trigger" aria-controls="health-check-accordion-block-<?php echo esc_attr( $section ); ?>" type="button">76 <button aria-expanded="false" class="health-check-accordion-trigger" aria-controls="health-check-accordion-block-<?php echo esc_attr( $section ); ?>" type="button"> 77 77 <span class="title"> 78 78 <?php echo esc_html( $details['label'] ); ?>
Note: See TracChangeset
for help on using the changeset viewer.