This commit is contained in:
calzoneman 2013-06-30 15:56:41 -04:00
parent e030a2bfa6
commit 543ec91e9b
3 changed files with 18 additions and 4 deletions

View file

@ -58,6 +58,7 @@ var Player = function(data) {
this.nullPlayer();
break;
}
this.load(data);
}
Player.prototype.nullPlayer = function() {
@ -114,19 +115,23 @@ Player.prototype.initYouTube = function() {
}
this.pause = function() {
this.player.pauseVideo();
if(this.player.pauseVideo)
this.player.pauseVideo();
}
this.play = function() {
this.player.playVideo();
if(this.player.playVideo)
this.player.playVideo();
}
this.getTime = function(callback) {
callback(this.player.getCurrentTime());
if(this.player.getCurrentTime)
callback(this.player.getCurrentTime());
}
this.seek = function(time) {
this.player.seekTo(time, true);
if(this.player.seekTo)
this.player.seekTo(time, true);
}
}