diff options
| author | Shawn <shawn@qwil.io> | 2022-07-21 10:54:08 +0100 |
|---|---|---|
| committer | Shawn <shawn@qwil.io> | 2022-07-21 10:54:08 +0100 |
| commit | 39870b788bcbf04186822a8ae7763d81aa72ba8f (patch) | |
| tree | ad7494537111b40f95213c624030b22721305392 /index.html | |
| parent | d0064a5f3e447a048202bbab703785f88b57fdfe (diff) | |
added disableTileEnlargement option
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -82,6 +82,7 @@ const $startAudioMuted = $("#startAudioMuted"); const $startVideoMuted = $("#startVideoMuted"); const $disableFaceCentering = $("#disableFaceCentering"); + const $disableTileEnlargement = $("#disableTileEnlargement"); const $disableInitialGUM = $("#disableInitialGUM"); const $disableNotifications = $("#disableNotifications"); const $codeFeatures = $("#codeFeatures"); @@ -105,6 +106,10 @@ paramGroup['config.faceLandmarks.enableFaceCentering'] = false; } + if ($disableTileEnlargement.prop('checked')) { + paramGroup['config.disableTileEnlargement'] = true; + } + if ($disableInitialGUM.prop('checked')) { paramGroup['config.disableInitialGUM'] = true; } @@ -121,6 +126,7 @@ $startAudioMuted.on("input", featureChanged); $startVideoMuted.on("input", featureChanged); $disableFaceCentering.on("input", featureChanged); + $disableTileEnlargement.on("input", featureChanged); $disableInitialGUM.on("input", featureChanged); $disableNotifications.on("input", featureChanged); @@ -344,6 +350,20 @@ Disable Face Centering </label> </div> + + <div class="form-check mb-4"> + <input class="form-check-input" type="checkbox" value="" id="disableTileEnlargement"> + <label class="form-check-label" for="disableTileEnlargement"> + Disable Tile Enlargement + </label> + <br/> + <small class="text-muted"> + Jitsi attempts to use as much screen real-estate as possible when displaying video in tile view. + Depending on your screen geometry, this might involve cropping the displayed videos. + Coupled with the face-centering feature, this usually produces good results + but there maybe some use cases where this is not desirable. Check this to disable that feature. + </small> + </div> <div class="form-check mb-4"> <input class="form-check-input" type="checkbox" value="" id="disableInitialGUM"> |
