Commit b8011371 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Rework settings handling in sfu.js.

There is now a data structure that contains the ultimate truth
about the user's preferences.  We no longer grovel through the
UI components.
parent f5cb2ff3
...@@ -146,14 +146,12 @@ ...@@ -146,14 +146,12 @@
<div id="mediaoptions"> <div id="mediaoptions">
<label for="videoselect">Camera:</label> <label for="videoselect">Camera:</label>
<select id="videoselect" class="select select-inline"> <select id="videoselect" class="select select-inline">
<option>default</option> <option value="">off</option>
<option>off</option>
</select> </select>
<label for="audioselect">Microphone:</label> <label for="audioselect">Microphone:</label>
<select id="audioselect" class="select select-inline"> <select id="audioselect" class="select select-inline">
<option>default</option> <option value="">off</option>
<option>off</option>
</select> </select>
</div> </div>
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment