Skip to content

Commit

Permalink
cleanup file
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswebb09 committed Jan 9, 2024
1 parent 26d3e66 commit 2e0c696
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ const openPopover = (e: ChangeEvent<HTMLInputElement>, team_member) => {
});
document.getElementById('popover-id-left-purple').classList.toggle("hidden");
document.getElementById('popoverTitleContent').innerHTML = team_member.name
var a = document.createElement('a');
let a = document.createElement('a');
a.setAttribute('href',"https://www.github.com/" + team_member.github_username);
a.innerHTML = "Github Profile"
var p = document.createElement("p");
let p = document.createElement("p");
p.innerHTML = team_member.accomplishments + "<br/> <br/>";
p.appendChild(a);
document.getElementById('popoverContent').appendChild(p);
Expand Down

0 comments on commit 2e0c696

Please sign in to comment.