Video over token, free-form video windows
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user