CC-1823 definitely fixed now.

This commit is contained in:
martin 2011-01-30 17:27:58 -05:00
parent 0ba5a1f520
commit 2310c24f26
1 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,6 @@
var estimatedSchedulePosixTime = -1;
var localRemoteTimeOffset;
var localRemoteTimeOffset = -1;
var previousSongs = new Array();
var currentSong = new Array();
@ -53,8 +53,10 @@ function getTrackInfo(song){
function secondsTimer(){
var date = new Date();
if (localRemoteTimeOffset != -1)
estimatedSchedulePosixTime = date.getTime() - localRemoteTimeOffset;
updateProgressBarValue();
}
function updateGlobalValues(obj){