Skip to content

Commit

Permalink
Fix to aria-expanded instead of aria-hidden in javascript where I cha…
Browse files Browse the repository at this point in the history
…nged the others.
  • Loading branch information
sfisher committed Nov 19, 2024
1 parent 1faa753 commit 47686dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/js/main2.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ $(document).ready(function(){
if($('#js-header__nav').attr('aria-expanded') == 'false') {
$('#js-header__nav').attr('aria-expanded', 'true');
} else {
$('#js-header__nav').attr('aria-hidden', 'false');
$('#js-header__nav').attr('aria-expanded', 'false');
}

});
Expand Down

0 comments on commit 47686dd

Please sign in to comment.