Skip to content

Commit

Permalink
fix: only ativate buttons on first level when expanding
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyblasta committed Apr 5, 2023
1 parent 25f2e9d commit a4bf775
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/ui/collapse.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,11 @@ export default function Collapse(options = {}) {

// Set tabindex for all buttons to include or exclude in taborder depending on if expanded or not
const setTabIndex = function setTabIndex(idx) {
// Skips the last button since it's slidenav and should be excluded from tab order
for (let i = 0; i < containerEl.getElementsByTagName('button').length - 1; i += 1) {
containerEl.getElementsByTagName('button')[i].tabIndex = idx;
for (let i = 0; i < containerEl.getElementsByTagName('button').length; i += 1) {
// Checks if the button is a direct child of the opened group and not a grandchild which shouldn't be activated until that group is opened
if (containerEl.id === containerEl.getElementsByTagName('button')[i].closest('.collapse-container').id) {
containerEl.getElementsByTagName('button')[i].tabIndex = idx;
}
}
};

Expand Down

0 comments on commit a4bf775

Please sign in to comment.