Adds FF in the list of supported browsers. Enables it by default.
This commit is contained in:
parent
e781eb6423
commit
e1d71a41f7
|
@ -31,7 +31,7 @@ var config = {
|
|||
enableRecording: false,
|
||||
enableWelcomePage: true,
|
||||
enableSimulcast: false,
|
||||
enableFirefoxSupport: false, //firefox support is still experimental, only one-to-one conferences with chrome focus
|
||||
// will work when simulcast, bundle, mux, lastN and SCTP are disabled.
|
||||
enableFirefoxSupport: true, //firefox support is still experimental and
|
||||
// will work when simulcast is *disabled* and rtcpMux & bundle are *enabled*.
|
||||
logStats: false // Enable logging of PeerConnection stats via the focus
|
||||
};
|
||||
|
|
|
@ -62,7 +62,7 @@ a {
|
|||
.supported_browsers
|
||||
{
|
||||
margin: 0px auto 0px auto;
|
||||
width: 460px;
|
||||
width: 660px;
|
||||
}
|
||||
|
||||
.clear
|
||||
|
@ -101,6 +101,13 @@ a {
|
|||
height: 79px;
|
||||
background-image: url('/images/chromium.png');
|
||||
}
|
||||
#firefox-nightly_logo
|
||||
{
|
||||
width: 73px;
|
||||
height: 79px;
|
||||
background-image: url('/images/firefox-nightly.png');
|
||||
}
|
||||
|
||||
#opera_logo
|
||||
{
|
||||
width: 73px;
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 9.5 KiB |
|
@ -32,6 +32,13 @@
|
|||
<a href="http://www.opera.com"><div class="button">DOWNLOAD</div></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="browser_wrapper">
|
||||
Firefox Nightly
|
||||
<div class="browser">
|
||||
<div class="logo" id="firefox-nightly_logo"></div>
|
||||
<a href="https://nightly.mozilla.org/"><div class="button">DOWNLOAD</div></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
<div class="firefox">We are hoping that multistream support for Firefox would not be long so that we could all use this application with our favorite browser.</div>
|
||||
|
|
Loading…
Reference in New Issue