This repository has been archived on 2025-12-24. You can view files and clone it, but cannot push or open issues or pull requests.
site-template/ref/astro-imagetools/docs/public/make-scrollable-code-focusable.js
2025-03-07 14:59:06 +01:00

4 lines
117 B
JavaScript

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