mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
GUACAMOLE-237: Make standard comments instead of JSDoc comments.
This commit is contained in:
@@ -181,19 +181,15 @@ Guacamole.RawAudioRecorder = function RawAudioRecorder(stream, mimetype) {
|
||||
*/
|
||||
var context = Guacamole.AudioContextFactory.getAudioContext();
|
||||
|
||||
/**
|
||||
* Some browsers do not implement navigator.mediaDevices - this
|
||||
* shims in this functionality to ensure code compatibility.
|
||||
*/
|
||||
// Some browsers do not implement navigator.mediaDevices - this
|
||||
// shims in this functionality to ensure code compatibility.
|
||||
if (!navigator.mediaDevices)
|
||||
navigator.mediaDevices = {};
|
||||
|
||||
/**
|
||||
* Browsers that either do not implement navigator.mediaDevices
|
||||
* at all or do not implement it completely need the getUserMedia
|
||||
* method defined. This shims in this function by detecting
|
||||
* one of the supported legacy methods.
|
||||
*/
|
||||
// Browsers that either do not implement navigator.mediaDevices
|
||||
// at all or do not implement it completely need the getUserMedia
|
||||
// method defined. This shims in this function by detecting
|
||||
// one of the supported legacy methods.
|
||||
if (!navigator.mediaDevices.getUserMedia)
|
||||
navigator.mediaDevices.getUserMedia = (navigator.getUserMedia
|
||||
|| navigator.webkitGetUserMedia
|
||||
|
Reference in New Issue
Block a user