summaryrefslogtreecommitdiff
path: root/docs/public/make-scrollable-code-focusable.js
diff options
context:
space:
mode:
authorGravatar Jonathan Neal <jonathantneal@hotmail.com> 2021-12-22 16:11:05 -0500
committerGravatar GitHub <noreply@github.com> 2021-12-22 16:11:05 -0500
commit6ddd7678ffb6598ae6e263706813cb5e94535f02 (patch)
treed4b45f7590b59c3574bd6593b17d8066f71007c6 /docs/public/make-scrollable-code-focusable.js
parent305ce4182fbe89abcfb88008ddce178bd8863b6a (diff)
downloadastro-6ddd7678ffb6598ae6e263706813cb5e94535f02.tar.gz
astro-6ddd7678ffb6598ae6e263706813cb5e94535f02.tar.zst
astro-6ddd7678ffb6598ae6e263706813cb5e94535f02.zip
Use accessible indentation (#2253)
Diffstat (limited to 'docs/public/make-scrollable-code-focusable.js')
-rw-r--r--docs/public/make-scrollable-code-focusable.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/public/make-scrollable-code-focusable.js b/docs/public/make-scrollable-code-focusable.js
index 35f104923..f2b7030f7 100644
--- a/docs/public/make-scrollable-code-focusable.js
+++ b/docs/public/make-scrollable-code-focusable.js
@@ -1,3 +1,3 @@
Array.from(document.getElementsByTagName('pre')).forEach((element) => {
- element.setAttribute('tabindex', '0');
+ element.setAttribute('tabindex', '0');
});