2021-12-27 19:53:20 +00:00
|
|
|
function toggleContact(button)
|
|
|
|
{
|
|
|
|
if (button.innerHTML == "contact me")
|
|
|
|
{
|
|
|
|
button.innerHTML = "back"
|
2022-04-29 17:15:58 +01:00
|
|
|
document.getElementById("contactBar").style = "font-size: 1.5rem;"
|
2021-12-27 19:53:20 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
button.innerHTML = "contact me"
|
|
|
|
document.getElementById("contactBar").style = "font-size: 0;"
|
|
|
|
}
|
|
|
|
}
|