SYWEB-13 SYWEB-14: disabled "Call" button if the browser does not support all required WebRTC features

This commit is contained in:
Emmanuel ROHEE 2014-09-19 17:20:27 +02:00
parent e9670fd144
commit 709b8ac2b7
3 changed files with 14 additions and 2 deletions

View file

@ -33,7 +33,8 @@ angular.module('RoomController', ['ngSanitize', 'matrixFilter', 'mFileInput'])
paginating: false, // used to avoid concurrent pagination requests pulling in dup contents
stream_failure: undefined, // the response when the stream fails
waiting_for_joined_event: false, // true when the join request is pending. Back to false once the corresponding m.room.member event is received
messages_visibility: "hidden" // In order to avoid flickering when scrolling down the message table at the page opening, delay the message table display
messages_visibility: "hidden", // In order to avoid flickering when scrolling down the message table at the page opening, delay the message table display
webRTCSupported: isWebRTCSupported() // true if the browser does not support WebRTC
};
$scope.members = {};
$scope.autoCompleting = false;