1
0
Fork 0
mirror of https://github.com/dilllxd/gitfolio.git synced 2024-08-08 11:16:44 +00:00
gitfolio/views/index.js
2019-08-12 09:40:00 +05:30

8 lines
276 B
JavaScript

document.querySelector("#socials").addEventListener("change", event => {
if (event.target.checked) {
document.querySelector("#input_for_socials").style.display = "block";
} else {
document.querySelector("#input_for_socials").style.display = "none";
}
});