CC-3795: Schedule Play's line is all OFF after Master source is ON

-fixed
This commit is contained in:
denise 2012-05-14 12:16:11 -04:00
parent 8ff30cf5a1
commit ea5c5c8586
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ function updateProgressBarValue(){
var scheduled_play_div = $("#scheduled_play_div");
var scheduled_play_line_to_switch = scheduled_play_div.parent().find(".line-to-switch");
if (currentSong !== null && !master_dj_on_air && !live_dj_on_air){
if (currentSong !== null){
songPercentDone = (estimatedSchedulePosixTime - currentSong.songStartPosixTime)/currentSong.songLengthMs*100;
if (songPercentDone < 0 || songPercentDone > 100){
songPercentDone = 0;