This commit is contained in:
2025-10-15 16:52:39 +02:00
parent 1015e9e18f
commit 1b35c4ccc1
26 changed files with 1078 additions and 433 deletions

View File

@ -30,10 +30,18 @@ export class UIState {
this.scopePopupVisible = true;
}
toggleScope() {
this.scopePopupVisible = !this.scopePopupVisible;
}
openSpectrogram() {
this.spectrogramPopupVisible = true;
}
toggleSpectrogram() {
this.spectrogramPopupVisible = !this.spectrogramPopupVisible;
}
showShare(url: string) {
this.shareUrl = url;
this.sharePopupVisible = true;