CC-2860: When recording a show, UTC time is displayed on the

text field of right progress bar.
This commit is contained in:
martin 2011-09-23 15:37:45 -04:00
parent 1dd78d0584
commit e60db9e031
2 changed files with 2 additions and 1 deletions

View file

@ -167,7 +167,7 @@ function updatePlaybar(){
$('#show-length').empty();
if (currentShow.length > 0){
$('#show-length').text(convertDateToHHMM(currentShow[0].showStartPosixTime) + " - " + convertDateToHHMM(currentShow[0].showEndPosixTime));
$('#show-length').text(convertDateToHHMM(currentShow[0].showStartPosixTime + timezoneOffset) + " - " + convertDateToHHMM(currentShow[0].showEndPosixTime + timezoneOffset));
}
/* Column 2 update */