Skip to content
Snippets Groups Projects
  1. Apr 04, 2015
  2. Apr 01, 2015
  3. Mar 30, 2015
  4. Mar 29, 2015
  5. Mar 26, 2015
  6. Mar 25, 2015
  7. Mar 24, 2015
  8. Mar 21, 2015
    • Felipe Cecagno's avatar
      2df21ae7
    • Felipe Cecagno's avatar
      fixed the cancel button visibility when it take a while to enable webrtc but... · 3c307490
      Felipe Cecagno authored
      fixed the cancel button visibility when it take a while to enable webrtc but eventually it worked, so the next time the connecting window is presented, the cancel button should be hidden again instead of remain visible
      
      to test it, apply this patch:
      
      diff --git a/bigbluebutton-client/resources/prod/lib/bbb_webrtc_bridge_sip.js b/bigbluebutton-client/resources/prod/lib/bbb_webrtc_bridge_sip.js
      index b9b35bb..f497afa 100755
      --- a/bigbluebutton-client/resources/prod/lib/bbb_webrtc_bridge_sip.js
      +++ b/bigbluebutton-client/resources/prod/lib/bbb_webrtc_bridge_sip.js
      @@ -33,7 +33,7 @@ function joinWebRTCVoiceConference() {
                                      BBB.webRTCConferenceCallEnded();
                                      break;
                              case 'started':
      -                               BBB.webRTCConferenceCallStarted();
      +                               setTimeout(function() { BBB.webRTCConferenceCallStarted(); }, 15000);
                                      break;
                              case 'connecting':
                                      BBB.webRTCConferenceCallConnecting();
      @@ -79,7 +79,7 @@ function startWebRTCAudioTest(){
                                      BBB.webRTCEchoTestEnded();
                                      break;
                              case 'started':
      -                               BBB.webRTCEchoTestStarted();
      +                               setTimeout(function() { BBB.webRTCEchoTestStarted(); }, 15000);
                                      break;
                              case 'connecting':
                                      BBB.webRTCEchoTestConnecting();
      3c307490
  9. Mar 20, 2015
  10. Mar 18, 2015
Loading