0
0
Fork 0

HTML string attributes set as booleans (#24408)

This commit is contained in:
Nick Schonning 2023-04-04 10:33:33 -04:00 committed by GitHub
parent b80a7b031b
commit a425915ce7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -291,10 +291,10 @@ function main() {
if (sidebar.classList.contains('visible')) {
document.body.style.overflow = null;
toggleButton.setAttribute('aria-expanded', false);
toggleButton.setAttribute('aria-expanded', 'false');
} else {
document.body.style.overflow = 'hidden';
toggleButton.setAttribute('aria-expanded', true);
toggleButton.setAttribute('aria-expanded', 'true');
}
toggleButton.classList.toggle('active');