mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-28 00:00:53 +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");
|
||
|
}
|