0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00
astro/examples/docs/public/make-scrollable-code-focusable.js

4 lines
116 B
JavaScript
Raw Normal View History

2021-08-13 19:58:00 -05:00
Array.from(document.getElementsByTagName('pre')).forEach((element) => {
2021-12-22 16:11:05 -05:00
element.setAttribute('tabindex', '0');
2021-08-13 19:58:00 -05:00
});