Skip to content

Commit

Permalink
Merge branch 'master' of github.com:wesbos/JavaScript30
Browse files Browse the repository at this point in the history
  • Loading branch information
wesbos committed Jan 18, 2017
2 parents 95dd471 + 6f17aa3 commit d740cdf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion 22 - Follow Along Link Highlighter/index-FINISHED.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
const triggers = document.querySelectorAll('a');
const highlight = document.createElement('span');
highlight.classList.add('highlight');
document.body.append(highlight);
document.body.appendChild(highlight);

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

## A note on Pull Requests

Expand Down

0 comments on commit d740cdf

Please sign in to comment.