diff --git a/modules/ext.tabberNeue/ext.tabberNeue.js b/modules/ext.tabberNeue/ext.tabberNeue.js index d3fb143..5a1ee38 100644 --- a/modules/ext.tabberNeue/ext.tabberNeue.js +++ b/modules/ext.tabberNeue/ext.tabberNeue.js @@ -164,7 +164,8 @@ class TabberAction { tabpanelVisibilityUpdates.push( { element: tabpanel, attributes: { - 'aria-hidden': 'false' + 'aria-hidden': 'false', + tabindex: '0' } } ); if ( typeof resizeObserver !== 'undefined' && resizeObserver ) { @@ -174,7 +175,8 @@ class TabberAction { tabpanelVisibilityUpdates.push( { element: tabpanel, attributes: { - 'aria-hidden': 'true' + 'aria-hidden': 'true', + tabindex: '-1' } } ); if ( typeof resizeObserver !== 'undefined' && resizeObserver ) {