mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
Fixup "Users: Add a popup to change the status"
Sorry :3
This commit is contained in:
parent
76605b9eed
commit
73b8ac3f4a
1 changed files with 10 additions and 10 deletions
|
@ -552,19 +552,19 @@
|
|||
Function.noop
|
||||
]);
|
||||
}
|
||||
</script>
|
||||
|
||||
{if isset($thisUser) && $user->getId() == $thisUser->getId()}
|
||||
function setStatusEditorShown(shown) {
|
||||
document.getElementById("status_editor").style.display = shown ? "block" : "none";
|
||||
}
|
||||
<script n:if="isset($thisUser) && $user->getId() == $thisUser->getId()">
|
||||
function setStatusEditorShown(shown) {
|
||||
document.getElementById("status_editor").style.display = shown ? "block" : "none";
|
||||
}
|
||||
|
||||
document.addEventListener("click", event => {
|
||||
if(!event.target.closest("#status_editor") && !event.target.closest("#page_status_text"))
|
||||
setStatusEditorShown(false);
|
||||
});
|
||||
document.addEventListener("click", event => {
|
||||
if(!event.target.closest("#status_editor") && !event.target.closest("#page_status_text"))
|
||||
setStatusEditorShown(false);
|
||||
});
|
||||
|
||||
document.getElementById("page_status_text").onclick = setStatusEditorShown.bind(this, true);
|
||||
{/if}
|
||||
document.getElementById("page_status_text").onclick = setStatusEditorShown.bind(this, true);
|
||||
</script>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in a new issue