Skip to content

Commit

Permalink
Merge pull request origo-map#1735 from origo-map/tab-legend-subgroups
Browse files Browse the repository at this point in the history
fix: only activate buttons on first level when expanding
  • Loading branch information
johnnyblasta committed Apr 5, 2023
2 parents 25f2e9d + a4bf775 commit b8cf20a
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 b8cf20a

Please sign in to comment.