Adds support for the openSctp and enableFirefoxHacks configuration params.
This commit is contained in:
parent
5ba666de2e
commit
cb8f57b3e3
14
moderator.js
14
moderator.js
|
@ -93,6 +93,20 @@ var Moderator = (function (my) {
|
|||
{ name: 'adaptiveSimulcast', value: config.adaptiveSimulcast})
|
||||
.up();
|
||||
}
|
||||
if (config.openSctp !== undefined)
|
||||
{
|
||||
elem.c(
|
||||
'property',
|
||||
{ name: 'openSctp', value: config.openSctp})
|
||||
.up();
|
||||
}
|
||||
if (config.enableFirefoxSupport !== undefined)
|
||||
{
|
||||
elem.c(
|
||||
'property',
|
||||
{ name: 'enableFirefoxHacks', value: config.enableFirefoxSupport})
|
||||
.up();
|
||||
}
|
||||
elem.up();
|
||||
return elem;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue