10 lines
327 B
JavaScript
10 lines
327 B
JavaScript
text = document.querySelector("[profile-visibility-toggle-label]").firstElementChild;
|
|
toggler = document.querySelector("[profile-visibility-toggle]");
|
|
toggler.addEventListener("change", function () {
|
|
if (this.checked) {
|
|
text.innerText = "Switch to invisible";
|
|
} else {
|
|
text.innerText = "Switch to visible";
|
|
}
|
|
});
|