summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorShawn <shawn@qwil.io>2023-05-24 15:26:34 +0100
committerShawn <shawn@qwil.io>2023-05-24 15:26:34 +0100
commit8ce32a654699bc19669a6744b9583b1b067139f1 (patch)
treed3db69f544265d30c01765e51698df25b66e3ba2 /index.html
parent665e3f617f6b794b35be4a64ba7f99a5e7087696 (diff)
added startAudioOnly
Diffstat (limited to 'index.html')
-rw-r--r--index.html16
1 files changed, 10 insertions, 6 deletions
diff --git a/index.html b/index.html
index 1140e6d..20d3b56 100644
--- a/index.html
+++ b/index.html
@@ -79,7 +79,7 @@
// Handle feature changes
const $disablePrejoinPage = $("#disablePrejoinPage");
- const $audioOnly = $("#audioOnly");
+ const $startAudioOnly = $("#startAudioOnly");
const $startAudioMuted = $("#startAudioMuted");
const $startVideoMuted = $("#startVideoMuted");
const $disableFaceCentering = $("#disableFaceCentering");
@@ -95,7 +95,7 @@
paramGroup['config.prejoinConfig.enabled'] = false;
}
- if ($audioOnly.prop('checked')) {
+ if ($startAudioOnly.prop('checked')) {
paramGroup['config.startAudioOnly'] = true;
}
@@ -128,7 +128,7 @@
}
$disablePrejoinPage.on("input", featureChanged);
- $audioOnly.on("input", featureChanged);
+ $startAudioOnly.on("input", featureChanged);
$startAudioMuted.on("input", featureChanged);
$startVideoMuted.on("input", featureChanged);
$disableFaceCentering.on("input", featureChanged);
@@ -340,10 +340,14 @@
</div>
<div class="form-check mb-4">
- <input class="form-check-input" type="checkbox" value="" id="audioOnly">
- <label class="form-check-label" for="audioOnly">
- Audio-only meeting (does not send or receive video)
+ <input class="form-check-input" type="checkbox" value="" id="startAudioOnly">
+ <label class="form-check-label" for="startAudioOnly">
+ Audio only
</label>
+ <br/>
+ <small class="text-muted">
+ Adjusts performance settings so no video is sent or received, allowing more bandwidth for audio call.
+ </small>
</div>
<div class="form-check mb-4">