Browse Source

Adds FF in the list of supported browsers. Enables it by default.

j8
George Politis 10 years ago
parent
commit
e1d71a41f7
4 changed files with 17 additions and 3 deletions
  1. 2
    2
      config.js
  2. 8
    1
      css/unsupported_browser.css
  3. BIN
      images/firefox-nightly.png
  4. 7
    0
      unsupported_browser.html

+ 2
- 2
config.js View File

31
     enableRecording: false,
31
     enableRecording: false,
32
     enableWelcomePage: true,
32
     enableWelcomePage: true,
33
     enableSimulcast: false,
33
     enableSimulcast: false,
34
-    enableFirefoxSupport: false, //firefox support is still experimental, only one-to-one conferences with chrome focus
35
-    // will work when simulcast, bundle, mux, lastN and SCTP are disabled.
34
+    enableFirefoxSupport: true, //firefox support is still experimental and
35
+    // will work when simulcast is *disabled* and rtcpMux & bundle are *enabled*.
36
     logStats: false // Enable logging of PeerConnection stats via the focus
36
     logStats: false // Enable logging of PeerConnection stats via the focus
37
 };
37
 };

+ 8
- 1
css/unsupported_browser.css View File

62
 .supported_browsers
62
 .supported_browsers
63
 {
63
 {
64
     margin: 0px auto 0px auto;
64
     margin: 0px auto 0px auto;
65
-    width: 460px;
65
+    width: 660px;
66
 }
66
 }
67
 
67
 
68
 .clear
68
 .clear
101
     height: 79px;
101
     height: 79px;
102
     background-image: url('/images/chromium.png');
102
     background-image: url('/images/chromium.png');
103
 }
103
 }
104
+#firefox-nightly_logo
105
+{
106
+    width: 73px;
107
+    height: 79px;
108
+    background-image: url('/images/firefox-nightly.png');
109
+}
110
+
104
 #opera_logo
111
 #opera_logo
105
 {
112
 {
106
     width: 73px;
113
     width: 73px;

BIN
images/firefox-nightly.png View File


+ 7
- 0
unsupported_browser.html View File

32
                 <a href="http://www.opera.com"><div class="button">DOWNLOAD</div></a>
32
                 <a href="http://www.opera.com"><div class="button">DOWNLOAD</div></a>
33
             </div>
33
             </div>
34
         </div>
34
         </div>
35
+        <div class="browser_wrapper">
36
+            Firefox Nightly
37
+            <div class="browser">
38
+                <div class="logo" id="firefox-nightly_logo"></div>
39
+                <a href="https://nightly.mozilla.org/"><div class="button">DOWNLOAD</div></a>
40
+            </div>
41
+        </div>
35
     </div>
42
     </div>
36
     <div class="clear"></div>
43
     <div class="clear"></div>
37
     <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>
44
     <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…
Cancel
Save