Video over token, free-form video windows
CI / ci (push) Successful in 40s
Release Creation / build (release) Successful in 46s

This commit is contained in:
2026-06-07 22:18:08 +02:00
parent a9dbb9306a
commit 76ce992505
22 changed files with 2649 additions and 36 deletions
+23
View File
@@ -0,0 +1,23 @@
{{!-- Freeform camera window body --}}
<section class="freeform-camera__body" data-user-id="{{userId}}">
<div class="freeform-camera__video-container"></div>
<div class="freeform-camera__footer">
<div class="freeform-camera__footer-left">
<button type="button" class="freeform-camera__control-btn freeform-camera__mic-btn"
data-action="toggle-mic"
data-tooltip="{{localize 'SCRYING_POOL.Freeform.toggleMic'}}">
{{#if audioMuted}}
<i class="fas fa-microphone-slash"></i>
{{else}}
<i class="fas fa-microphone"></i>
{{/if}}
</button>
<span class="freeform-camera__name">{{userName}}</span>
</div>
<div class="freeform-camera__footer-right">
<input type="range" class="freeform-camera__volume" min="0" max="1" step="0.05" value="{{volume}}"
data-action="set-volume"
data-tooltip="{{localize 'SCRYING_POOL.Freeform.volume'}}">
</div>
</div>
</section>