Skip to content

Instantly share code, notes, and snippets.

@hallvors
Created August 30, 2013 08:45
Show Gist options
  • Save hallvors/6387699 to your computer and use it in GitHub Desktop.
Save hallvors/6387699 to your computer and use it in GitHub Desktop.
Better feature detection of implementations that support HTML5 <video> tags
brightcove.isSupportedHTMLDevice=function(pUAString){
if(typeof window.HTMLVideoElement !== 'undefined'){
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment