Skip to content

Commit d740cdf

Browse files
committed
Merge branch 'master' of github.com:wesbos/JavaScript30
2 parents 95dd471 + 6f17aa3 commit d740cdf

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

22 - Follow Along Link Highlighter/index-FINISHED.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
const triggers = document.querySelectorAll('a');
3030
const highlight = document.createElement('span');
3131
highlight.classList.add('highlight');
32-
document.body.append(highlight);
32+
document.body.appendChild(highlight);
3333

3434
function highlightLink() {
3535
const linkCoords = this.getBoundingClientRect();

readme.md

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ Feel free to submit a PR adding a link to your own recaps, guides or reviews!
1616
* [Thorsten Frommen](https://tfrommen.de/tag/javascript-30/) shares how he solved the exercises before viewing the answers
1717
* [Soyaine 写的中文指南](https://github.com/soyaine/JavaScript30)包含了过程记录和难点解释
1818
* [Ayo Isaiah's](https://freshman.tech/archive/#javascript30) Recaps and Lessons Learned
19+
* [Adriana Rios](https://stpcollabr8nlstn.github.io/JavaScript30/) shares her alternative solutions
20+
* [Michael Einsohn](http://30daysofjs.michaeleinsohn.com) publishes each challenge after watching the video once
21+
* [Mike Ekkel](https://medium.com/@mike_ekkel/javascript-30-a-30-day-vanilla-js-challenge-6a733fc9f62c#.9frjtaje9)
1922

2023
## A note on Pull Requests
2124

0 commit comments

Comments
 (0)