Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
3 * You can obtain one at http://mozilla.org/MPL/2.0/. */
5 function onOK() {
6 window.arguments[0].out = {
7 video: document.getElementById("video").selectedItem.value,
8 audio: document.getElementById("audio").selectedItem.value
9 };
11 return true;
12 }
14 function onLoad() {
15 let videoDevices = window.arguments[0].videoDevices;
16 if (videoDevices.length) {
17 let videoMenu = document.getElementById("video");
18 for (let i = 0; i < videoDevices.length; i++) {
19 videoMenu.appendItem(videoDevices[i].name, i);
20 }
21 videoMenu.selectedIndex = 1;
22 } else {
23 document.getElementById("videoGroup").hidden = true;
24 }
26 let audioDevices = window.arguments[0].audioDevices;
27 if (audioDevices.length) {
28 let audioMenu = document.getElementById("audio");
29 for (let i = 0; i < audioDevices.length; i++) {
30 audioMenu.appendItem(audioDevices[i].name, i);
31 }
32 audioMenu.selectedIndex = 1;
33 } else {
34 document.getElementById("audioGroup").hidden = true;
35 }
37 window.sizeToContent();
38 }