Skip to content

Commit

Permalink
Merge branch 'master' into python-merge-sort
Browse files Browse the repository at this point in the history
  • Loading branch information
fineanmol committed Oct 30, 2020
2 parents 40b7e4c + c9defc5 commit 5de7022
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions Contributors.html
Original file line number Diff line number Diff line change
Expand Up @@ -179,21 +179,15 @@ <h1 class="animated rubberBand delay-4s">Contributors</h1>
<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/achudinovskyh"><span>Andrew Chudinovskyh</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 @@ -210,12 +204,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 5de7022

Please sign in to comment.