Skip to content

Instantly share code, notes, and snippets.

@stuwilli
Created February 6, 2015 15:20
Show Gist options
  • Save stuwilli/f78de2d205d1cb442aa1 to your computer and use it in GitHub Desktop.
Save stuwilli/f78de2d205d1cb442aa1 to your computer and use it in GitHub Desktop.
Test for existence of a Brightcove player
(function () {
if (typeof brightcove !== "undefined") {
if (Object.keys(brightcove.experiences).length !== 0) {
return true;
}
}
return false;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment