diff options
author | 2021-07-23 00:13:51 +0000 | |
---|---|---|
committer | 2021-07-23 00:13:51 +0000 | |
commit | 40875600f112e7a6cbf14017765be3911700af00 (patch) | |
tree | d9bf9735ee90e0dd0b8b5d49aeab14a30a34a3c2 | |
parent | 4fd6cfe668e8aaf3f92817379fc8e123a6caf24f (diff) | |
download | astro-40875600f112e7a6cbf14017765be3911700af00.tar.gz astro-40875600f112e7a6cbf14017765be3911700af00.tar.zst astro-40875600f112e7a6cbf14017765be3911700af00.zip |
[ci] yarn format
Diffstat (limited to '')
-rw-r--r-- | docs/public/make-scrollable-code-focusable.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/public/make-scrollable-code-focusable.js b/docs/public/make-scrollable-code-focusable.js index 6fbf1eebe..35f104923 100644 --- a/docs/public/make-scrollable-code-focusable.js +++ b/docs/public/make-scrollable-code-focusable.js @@ -1,3 +1,3 @@ -Array.from(document.getElementsByTagName("pre")).forEach((element) => { - element.setAttribute("tabindex", "0"); +Array.from(document.getElementsByTagName('pre')).forEach((element) => { + element.setAttribute('tabindex', '0'); }); |