Add new app config audioOutputSupportedBrowsers and tidy
parent
d07b2a2101
commit
f0c3b16197
|
|
@ -25,6 +25,16 @@ var config =
|
||||||
{ scaleResolutionDownBy: 2 },
|
{ scaleResolutionDownBy: 2 },
|
||||||
{ scaleResolutionDownBy: 1 }
|
{ scaleResolutionDownBy: 1 }
|
||||||
],
|
],
|
||||||
|
/**
|
||||||
|
* White listing browsers that support audio output device selection.
|
||||||
|
* It is not yet fully implemented in Firefox.
|
||||||
|
* See: https://bugzilla.mozilla.org/show_bug.cgi?id=1498512
|
||||||
|
*/
|
||||||
|
audioOutputSupportedBrowsers :
|
||||||
|
[
|
||||||
|
'chrome',
|
||||||
|
'opera'
|
||||||
|
],
|
||||||
// Socket.io request timeout
|
// Socket.io request timeout
|
||||||
requestTimeout : 10000,
|
requestTimeout : 10000,
|
||||||
transportOptions :
|
transportOptions :
|
||||||
|
|
|
||||||
|
|
@ -234,7 +234,9 @@ const Settings = ({
|
||||||
</FormHelperText>
|
</FormHelperText>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
</form>
|
</form>
|
||||||
{ browser.name === 'chrome' &&
|
{
|
||||||
|
window.config.audioOutputSupportedBrowsers &&
|
||||||
|
window.config.audioOutputSupportedBrowsers.includes(browser.name) &&
|
||||||
<form className={classes.setting} autoComplete='off'>
|
<form className={classes.setting} autoComplete='off'>
|
||||||
<FormControl className={classes.formControl}>
|
<FormControl className={classes.formControl}>
|
||||||
<Select
|
<Select
|
||||||
|
|
@ -426,7 +428,7 @@ const mapStateToProps = (state) =>
|
||||||
me : state.me,
|
me : state.me,
|
||||||
room : state.room,
|
room : state.room,
|
||||||
settings : state.settings,
|
settings : state.settings,
|
||||||
browser : state.me.browser,
|
browser : state.me.browser
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue