13 lines
316 B
JavaScript
Raw Normal View History

document.getElementById("back-button").addEventListener("click", goBack);
document.getElementById("back-button").style.visibility = wereInUserSelection()
? "visible"
: "hidden";
function goBack() {
history.back();
}
function wereInUserSelection() {
return window.location.href.includes("userselection");
}