astro/docs/public/make-scrollable-code-focusable.js
2021-07-23 00:13:51 +00:00

3 lines
117 B
JavaScript

Array.from(document.getElementsByTagName('pre')).forEach((element) => {
element.setAttribute('tabindex', '0');
});