Skip to content

Instantly share code, notes, and snippets.

@instanceofjamie
Created May 17, 2012 09:57
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 instanceofjamie/2717874 to your computer and use it in GitHub Desktop.
Save instanceofjamie/2717874 to your computer and use it in GitHub Desktop.
ITV Player include...
drupal_add_js('function onready() {
console.log(ItvPlayer);
var params = new ItvPlayer.Media.PlaylistParameters();
params.videoId = 287113;
var element = document.getElementById("player");
var player = ItvPlayer.Media.createPlayer(element, ItvPlayer.Media.PlayerType.Flash, params);
player.play();
}
ItvPlayer.addEventListener("ready",onready,false);','inline');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment