Skip to:
Content

BuddyPress.org

Ticket #3263: 3263-aria-live-backend.patch

File 3263-aria-live-backend.patch, 2.5 KB (added by mercime, 9 years ago)

Live regions - back-end

  • src/bp-xprofile/bp-xprofile-admin.php

     
    113113
    114114                        <?php endif; ?>
    115115
    116                         <div id="tabs">
     116                        <div id="tabs" aria-live="polite" aria-atomic="true" aria-relevant="all">
    117117                                <ul id="field-group-tabs">
    118118
    119119                                        <?php if ( !empty( $groups ) ) : foreach ( $groups as $group ) : ?>
     
    183183
    184184                                                <?php endif; ?>
    185185
    186                                                 <fieldset id="<?php echo esc_attr( $group->id ); ?>" class="connectedSortable field-group">
     186                                                <fieldset id="<?php echo esc_attr( $group->id ); ?>" class="connectedSortable field-group" aria-live="polite" aria-atomic="true" aria-relevant="all">
    187187                                                        <legend class="screen-reader-text"><?php
    188188                                                        /** This filter is documented in bp-xprofile/bp-xprofile-template.php */
    189189                                                        /* translators: accessibility text */
  • src/bp-xprofile/classes/class-bp-xprofile-field-type.php

     
    322322
    323323                <div id="<?php echo esc_attr( $type ); ?>" class="postbox bp-options-box" style="<?php echo esc_attr( $class ); ?> margin-top: 15px;">
    324324                        <h3><?php esc_html_e( 'Please enter options for this Field:', 'buddypress' ); ?></h3>
    325                         <div class="inside">
     325                        <div class="inside" aria-live="polite" aria-atomic="true" aria-relevant="all">
    326326                                <p>
    327327                                        <label for="sort_order_<?php echo esc_attr( $type ); ?>"><?php esc_html_e( 'Sort Order:', 'buddypress' ); ?></label>
    328328                                        <select name="sort_order_<?php echo esc_attr( $type ); ?>" id="sort_order_<?php echo esc_attr( $type ); ?>" >
  • src/bp-xprofile/classes/class-bp-xprofile-field.php

     
    15241524
    15251525                <div class="postbox">
    15261526                        <h2><label for="fieldtype"><?php esc_html_e( 'Type', 'buddypress'); ?></label></h2>
    1527                         <div class="inside">
     1527                        <div class="inside" aria-live="polite" aria-atomic="true" aria-relevant="all">
    15281528                                <select name="fieldtype" id="fieldtype" onchange="show_options(this.value)">
    15291529
    15301530                                        <?php bp_xprofile_admin_form_field_types( $this->type ); ?>