feat(ui.js): Freigabe-Schaltfläche als Symbolleisten-Schaltfläche hinzugefügt.

- Share-Button auf der linken Seite der Kopfzeile entfernt
This commit is contained in:
Developer 02
2024-10-14 11:27:41 +02:00
parent c9410a1e2e
commit 1cb9042736
7 changed files with 41 additions and 22 deletions

View File

@@ -110,4 +110,10 @@ class Comp {
return this.__SignedCountBar;
}
}
static __ShareBackdrop;
static get ShareBackdrop() {
Comp.__ShareBackdrop ??= new bootstrap.Modal(document.getElementById('shareBackdrop'));
return this.__ShareBackdrop;
}
}