Enables the screen capture on firefox.

This commit is contained in:
Boris Grozev 2015-08-24 16:04:32 -05:00
parent 555dc8ad36
commit f0d31bfcc2
1 changed files with 6 additions and 0 deletions

View File

@ -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" +