From d0a42a614b6a345b9374ecd06b420033fa13f31e Mon Sep 17 00:00:00 2001 From: calzoneman Date: Sat, 4 May 2013 18:20:46 -0500 Subject: [PATCH] Quickfix for race condition on player load --- media.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/media.js b/media.js index aaa1ea1f..b16569b1 100644 --- a/media.js +++ b/media.js @@ -92,9 +92,10 @@ Media.prototype.fullupdate = function() { } Media.prototype.timeupdate = function() { - return { - currentTime: this.currentTime - }; + return this.fullupdate(); + //return { + // currentTime: this.currentTime + //}; } exports.Media = Media;