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