Merge branch 'master' of github.com:calzoneman/sync

This commit is contained in:
calzoneman 2013-08-09 16:32:38 -04:00
commit dbad8cac2f
1 changed files with 1 additions and 10 deletions

View File

@ -640,16 +640,7 @@ Callbacks = {
// I'm a leader! Set up sync function // I'm a leader! Set up sync function
if(LEADTMR) if(LEADTMR)
clearInterval(LEADTMR); clearInterval(LEADTMR);
LEADTMR = setInterval(function() { LEADTMR = setInterval(sendVideoUpdate, 5000);
PLAYER.getTime(function(seconds) {
socket.emit("mediaUpdate", {
id: PLAYER.id,
currentTime: seconds,
paused: PLAYER.paused,
type: PLAYER.type
});
});
}, 5000);
} }
// I'm not a leader. Don't send syncs to the server // I'm not a leader. Don't send syncs to the server
else { else {