Skip to content

Commit

Permalink
Merge pull request #115 from ydegtyar/develop
Browse files Browse the repository at this point in the history
Minor improvements
  • Loading branch information
fineanmol authored Oct 30, 2020
2 parents aa64228 + 3309af1 commit c9defc5
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions Contributors.html
Original file line number Diff line number Diff line change
Expand Up @@ -178,21 +178,14 @@ <h1 class="animated rubberBand delay-4s">Contributors</h1>
<a class="box-item" href="https://github.com/ameygangwal"><span>Amey</span></a>
<a class="box-item" href="https://github.com/JoaoJesus94"><span>João Jesus</span></a>
<a class="box-item" href="https://github.com/alvalle09"><span>Alfredo Valle</span></a>
<a class="box-item" href="https://github.com/ydegtyar"><span>Yuriy Degtyar</span></a>

<!--
Add here
format : <a class="box-item" href="https://github.com/<your-username>"><span>Your Name</span></a>
-->








</div>

</div>
</div>

Expand All @@ -209,12 +202,10 @@ <h1 class="animated rubberBand delay-4s">Contributors</h1>
</button>

<script>
let contributors = document.querySelectorAll('a.box-item')
contributors.forEach(con => {
document.querySelectorAll('a.box-item').forEach(con => {
console.log(con.href)
con.innerHTML += '<img src="https://avatars.githubusercontent.com/' + con.href.split('https://github.com/')[1] + '">'
con.innerHTML += `<img src="https://avatars.githubusercontent.com/${con.href.split('https://github.com/')[1]}">`
})

</script>
<script src="/scripts/scroll.js"></script>

Expand Down

0 comments on commit c9defc5

Please sign in to comment.