Adding lint fixes
This commit is contained in:
parent
b45ab18b74
commit
ec3f37f956
|
@ -128,10 +128,12 @@ var RTC = {
|
|||
},
|
||||
getUserMediaWithConstraints:function(um, success_callback,
|
||||
failure_callback, resolution,
|
||||
bandwidth, minFps, maxFps, desktopStream)
|
||||
bandwidth, minFps, maxFps,
|
||||
desktopStream)
|
||||
{
|
||||
return this.rtcUtils.getUserMediaWithConstraints(um, success_callback,
|
||||
failure_callback, resolution, bandwidth, minFps, maxFps, desktopStream);
|
||||
failure_callback, resolution, bandwidth, minFps, maxFps,
|
||||
desktopStream);
|
||||
},
|
||||
attachMediaStream: function (elSelector, stream) {
|
||||
this.rtcUtils.attachMediaStream(elSelector, stream);
|
||||
|
|
|
@ -335,8 +335,6 @@ RTCUtils.prototype.getUserMediaWithConstraints = function(
|
|||
|
||||
console.info("Get media constraints", constraints);
|
||||
|
||||
var self = this;
|
||||
|
||||
try {
|
||||
this.getUserMedia(constraints,
|
||||
function (stream) {
|
||||
|
|
Loading…
Reference in New Issue