mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-13 08:33:00 -06:00
31 lines
1 KiB
HTML
31 lines
1 KiB
HTML
<div class="radio-button-group">
|
|
<button class="radio-button" (click)="toggleLiveFeed()" [ngClass]="{ off: !liveFeed, on: liveFeed }">
|
|
LIVE<br>FEED
|
|
</button>
|
|
<button class="radio-button" (click)="holdSystem()" [ngClass]="{ off: !systemHold, on: systemHold }">
|
|
HOLD<br>SYS
|
|
</button>
|
|
<button class="radio-button" (click)="holdTalkgroup()" [ngClass]="{ off: !talkgroupHold, on: talkgroupHold }">
|
|
HOLD<br>TG
|
|
</button>
|
|
</div>
|
|
<div class="radio-button-group">
|
|
<button class="radio-button" (click)="replayLast()">
|
|
REPLAY<br>LAST
|
|
</button>
|
|
<button class="radio-button" (click)="skipNext()">
|
|
SKIP<br>NEXT
|
|
</button>
|
|
<button class="radio-button" (click)="avoid()">
|
|
AVOID
|
|
</button>
|
|
</div>
|
|
<div class="radio-button-group">
|
|
<button class="radio-button" (click)="searchCall()">
|
|
SEARCH<br>CALL
|
|
</button>
|
|
<div class="radio-button-none"></div>
|
|
<button class="radio-button" (click)="selectTalkgroups()">
|
|
SELECT<br>TG
|
|
</button>
|
|
</div> |