Resolve #3500065 "Invalid aria attributes"
3 unresolved threads
Closes #3500065
Merge request reports
Activity
139 139 140 140 // Create gin_more_actions group. 141 141 $toggle_more_actions = t('More actions'); 142 $menu_id = 'gin-more-actions-' . uniqid(); changed this line in version 4 of the diff
147 149 'class' => ['gin-more-actions'], 148 150 ], 149 151 'more_actions_toggle' => [ 150 '#markup' => '<a href="#toggle-more-actions" class="gin-more-actions__trigger trigger" data-gin-tooltip role="button" title="' . $toggle_more_actions . '" aria-controls="gin_more_actions"><span class="visually-hidden">' . $toggle_more_actions . '</span></a>', 152 '#markup' => '<a href="#toggle-more-actions" class="gin-more-actions__trigger trigger" data-gin-tooltip role="button" title="' . $toggle_more_actions . '" aria-controls="' . $menu_id . '"><span class="visually-hidden">' . $toggle_more_actions . '</span></a>', 123 '#markup' => '<a href="#toggle-more-actions" class="gin-more-actions__trigger trigger" data-gin-tooltip role="button" title="' . $toggle_more_actions . '" aria-controls="' . $menu_id . '"><span class="visually-hidden">' . $toggle_more_actions . '</span></a>', 123 '#markup' => '<a href="#toggle-more-actions" class="gin-more-actions__trigger trigger" data-gin-tooltip role="button" title="' . $toggle_more_actions . '" aria-controls="' . $actions_menu_id . '"><span class="visually-hidden">' . $toggle_more_actions . '</span></a>', changed this line in version 4 of the diff
147 149 'class' => ['gin-more-actions'], 148 150 ], 149 151 'more_actions_toggle' => [ 150 '#markup' => '<a href="#toggle-more-actions" class="gin-more-actions__trigger trigger" data-gin-tooltip role="button" title="' . $toggle_more_actions . '" aria-controls="gin_more_actions"><span class="visually-hidden">' . $toggle_more_actions . '</span></a>', 152 '#markup' => '<a href="#toggle-more-actions" class="gin-more-actions__trigger trigger" data-gin-tooltip role="button" title="' . $toggle_more_actions . '" aria-controls="' . $menu_id . '"><span class="visually-hidden">' . $toggle_more_actions . '</span></a>', 151 153 '#weight' => 1, 152 154 ], 153 155 'more_actions_items' => [ 154 156 '#type' => 'container', 155 157 '#multilingual' => TRUE, 158 '#attributes' => [ 159 'id' => $menu_id, changed this line in version 4 of the diff
added 7 commits
-
8c6d7286...9004e117 - 6 commits from branch
project:4.0.x
- 1067864c - Merge branch '4.0.x' into '3500065-invalid-aria-attributes'
-
8c6d7286...9004e117 - 6 commits from branch
Please register or sign in to reply