new-horizons/docs/public/make-scrollable-code-focusable.js
2023-07-02 22:09:01 -04:00

4 lines
119 B
JavaScript

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