summaryrefslogtreecommitdiff
path: root/docs/public/make-scrollable-code-focusable.js
blob: f2b7030f7e8729112904a43606aeb303de2caba1 (plain) (blame)
1
2
3
Array.from(document.getElementsByTagName('pre')).forEach((element) => {
	element.setAttribute('tabindex', '0');
});