From f0d31bfcc22910e835641c3b80bf6abbce538e72 Mon Sep 17 00:00:00 2001 From: Boris Grozev Date: Mon, 24 Aug 2015 16:04:32 -0500 Subject: [PATCH] Enables the screen capture on firefox. --- modules/RTC/RTCUtils.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/RTC/RTCUtils.js b/modules/RTC/RTCUtils.js index 34a3a44b6..e6c6672ef 100644 --- a/modules/RTC/RTCUtils.js +++ b/modules/RTC/RTCUtils.js @@ -145,6 +145,12 @@ function getConstraints(um, options) { } ] }; + } else if (RTCBrowserType.isFirefox()) { + constraints.video = { + mozMediaSource: "window", + mediaSource: "window" + }; + } else { logger.error( "'screen' WebRTC media source is supported only in Chrome" +