Commit cb8f57b3 authored by George Politis's avatar George Politis
Browse files

Adds support for the openSctp and enableFirefoxHacks configuration params.

parent 5ba666de
No related merge requests found
Showing with 14 additions and 0 deletions
......@@ -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;
};
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment