preparations for audio-only firefox
This commit is contained in:
parent
91b03ba33c
commit
686bf4904c
6
app.js
6
app.js
|
@ -33,7 +33,11 @@ function init() {
|
||||||
connection.connect(jid, document.getElementById('password').value, function (status) {
|
connection.connect(jid, document.getElementById('password').value, function (status) {
|
||||||
if (status == Strophe.Status.CONNECTED) {
|
if (status == Strophe.Status.CONNECTED) {
|
||||||
console.log('connected');
|
console.log('connected');
|
||||||
getUserMediaWithConstraints(['audio', 'video'], '360');
|
if (RTC.browser == 'firefox') {
|
||||||
|
getUserMediaWithConstraints(['audio']);
|
||||||
|
} else {
|
||||||
|
getUserMediaWithConstraints(['audio', 'video'], '360');
|
||||||
|
}
|
||||||
document.getElementById('connect').disabled = true;
|
document.getElementById('connect').disabled = true;
|
||||||
} else {
|
} else {
|
||||||
console.log('status', status);
|
console.log('status', status);
|
||||||
|
|
Loading…
Reference in New Issue