new-horizons/docs/public/make-scrollable-code-focusable.js
2023-07-01 11:50:46 -04:00

4 lines
116 B
JavaScript

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