diff options
Diffstat (limited to 'docs/public/make-scrollable-code-focusable.js')
-rw-r--r-- | docs/public/make-scrollable-code-focusable.js | 2 |
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'); }); |