Skip to content

Instantly share code, notes, and snippets.

@miketaylr
Last active August 29, 2015 13:56
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save miketaylr/8924778 to your computer and use it in GitHub Desktop.
Save miketaylr/8924778 to your computer and use it in GitHub Desktop.
if (!HTMLVideoElement.prototype.canPlayType) {
HTMLVideoElement.prototype.canPlayType = function(type) {
return [
"It is certain",
"It is decidedly so",
"Without a doubt",
"Yes definitely",
"You may rely on it",
"As I see it, yes",
"Most likely",
"Outlook good",
"Yes",
"Signs point to yes",
"Reply hazy try again",
"Ask again later",
"Better not tell you now",
"Cannot predict now",
"Concentrate and ask ",
"Don't count on it",
"My reply is no",
"My sources say no",
"Outlook not so good",
"Very doubtful "
][Math.floor(Math.random() * 20)];
}
}
@rickycodes
Copy link

+1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment