astro/smoke/docs-main/public/make-scrollable-code-focusable.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

4 lines
116 B
JavaScript
Raw Normal View History

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