mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-27 16:00:50 +00:00
13 lines
316 B
JavaScript
13 lines
316 B
JavaScript
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");
|
|
}
|