Skip to:
Content

BuddyPress.org

Changeset 10776


Ignore:
Timestamp:
05/17/2016 10:49:39 PM (10 years ago)
Author:
mercime
Message:

Accessibility: Improve focus order in the Activity and Groups screens.

Ensured that the underlying DOM order is consistent with the
visual order by moving <tbody> before <tfoot> within the List
Tables in the Groups and Activity wp-admin screens.

Fixes #7065.

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-activity/classes/class-bp-activity-list-table.php

    r10739 r10776  
    253253                        </thead>
    254254
     255                        <tbody id="the-comment-list">
     256                                <?php $this->display_rows_or_placeholder(); ?>
     257                        </tbody>
     258
    255259                        <tfoot>
    256260                                <tr>
     
    258262                                </tr>
    259263                        </tfoot>
    260 
    261                         <tbody id="the-comment-list">
    262                                 <?php $this->display_rows_or_placeholder(); ?>
    263                         </tbody>
    264264                </table>
    265265                <?php
  • trunk/src/bp-groups/classes/class-bp-groups-list-table.php

    r10739 r10776  
    229229                        </thead>
    230230
     231                        <tbody id="the-comment-list">
     232                                <?php $this->display_rows_or_placeholder(); ?>
     233                        </tbody>
     234
    231235                        <tfoot>
    232236                                <tr>
     
    234238                                </tr>
    235239                        </tfoot>
    236 
    237                         <tbody id="the-comment-list">
    238                                 <?php $this->display_rows_or_placeholder(); ?>
    239                         </tbody>
    240240                </table>
    241241                <?php
Note: See TracChangeset for help on using the changeset viewer.