1
Fork 0
mirror of https://github.com/jech/galene.git synced 2024-11-09 18:25:58 +01:00

Add ability to receive nothing.

This commit is contained in:
Juliusz Chroboczek 2020-09-18 20:09:52 +02:00
parent 8a4b2f5d3f
commit eab848f2cf
2 changed files with 5 additions and 1 deletions

View file

@ -321,12 +321,15 @@ ServerConnection.prototype.join = function(group) {
/**
* request sets the list of requested media types.
*
* @param {string} what - One of "audio", "screenshare" or "everything".
* @param {string} what - One of '', 'audio', 'screenshare' or 'everything'.
*/
ServerConnection.prototype.request = function(what) {
/** @type {Object.<string,boolean>} */
let request = {};
switch(what) {
case '':
request = {};
break;
case 'audio':
request = {audio: true};
break;

View file

@ -174,6 +174,7 @@
<label for="requestselect">Receive:</label>
<select id="requestselect" class="select select-inline">
<option value="">nothing</option>
<option value="audio">audio only</option>
<option value="screenshare">screen share</option>
<option value="everything" selected>everything</option>