Skip to content

Commit

Permalink
remove debug input devices
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffkaufman committed Feb 14, 2021
1 parent e8a1057 commit 45c8e81
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions html/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -612,26 +612,6 @@ async function enumerate_inputs() {
}
inSelect.appendChild(el);
});

var el = document.createElement("option");
el.text = "---";
el.disabled = true;
inSelect.appendChild(el);

el = document.createElement("option");
el.value = "SILENCE";
el.text = "SILENCE";
inSelect.appendChild(el);

el = document.createElement("option");
el.value = "CLICKS";
el.text = "CLICKS";
inSelect.appendChild(el);

el = document.createElement("option");
el.value = "ECHO";
el.text = "ECHO";
inSelect.appendChild(el);
}

function allStatesExcept(states) {
Expand Down

0 comments on commit 45c8e81

Please sign in to comment.