mirror of https://github.com/calzoneman/sync.git
Quickfix for race condition on player load
This commit is contained in:
parent
703ac3ce4f
commit
d0a42a614b
7
media.js
7
media.js
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue