Skip to content

Instantly share code, notes, and snippets.

@DaveVoyles
Last active August 29, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DaveVoyles/d08d52d89f38d1a1362f to your computer and use it in GitHub Desktop.
Save DaveVoyles/d08d52d89f38d1a1362f to your computer and use it in GitHub Desktop.
Checking for getUserMedia, Modernizr
navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia;
if (!navigator.getuserMedia) {
Console.log('You are using a browser that does not support the Media Capture API');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment