Skip to content

Commit

Permalink
🤖 docs: Simplify scripts.
Browse files Browse the repository at this point in the history
Replace querySelectorAll(...)[0] by querySelector(...) in docs scripts.

These changes were automatically generated by a transform whose code can be found at:
  - https://github.com/make-github-pseudonymous-again/rejuvenate/blob/587dd807680b9b47d58146ef8f24224d84b87d34/src/transforms/codemod:doc-scripts-header-replace-querySelectorAll.js
Please contact the author of the transform if you believe there was an error.
  • Loading branch information
a-flying-potato authored and make-github-pseudonymous-again committed Jul 26, 2021
1 parent 4804d3d commit cd70f16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/scripts/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ domReady(() => {
projectname.text = 'comparison-sorting/insertion-sort';
projectname.href = './index.html';

const header = document.querySelectorAll('header')[0];
const header = document.querySelector('header');
header.insertBefore(projectname, header.firstChild);

const testlink = document.querySelector('header > a[data-ice="testLink"]');
Expand Down

0 comments on commit cd70f16

Please sign in to comment.