24 lines
987 B
Handlebars
24 lines
987 B
Handlebars
{{!-- 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>
|