Moderator notes WIP (#144)

This commit is contained in:
John Livingston
2024-07-30 18:36:53 +02:00
parent 31c4e5a646
commit 704e660f37
11 changed files with 164 additions and 21 deletions

View File

@ -76,6 +76,14 @@ export class MUCApp extends CustomElement {
}
}
showApp () {
if (!this.show) { return this.toggleApp() }
}
hideApp () {
if (this.show) { return this.toggleApp() }
}
_closeOtherApps () {
document.querySelectorAll('.livechat-converse-muc-app').forEach((el) => {
if (el !== this && el.show) {