Quickfix for race condition on player load

This commit is contained in:
calzoneman 2013-05-04 18:20:46 -05:00
parent 703ac3ce4f
commit d0a42a614b
1 changed files with 4 additions and 3 deletions

View File

@ -92,9 +92,10 @@ Media.prototype.fullupdate = function() {
} }
Media.prototype.timeupdate = function() { Media.prototype.timeupdate = function() {
return { return this.fullupdate();
currentTime: this.currentTime //return {
}; // currentTime: this.currentTime
//};
} }
exports.Media = Media; exports.Media = Media;