CC-2860: When recording a show, UTC time is displayed on the
text field of right progress bar.
This commit is contained in:
parent
1dd78d0584
commit
e60db9e031
2 changed files with 2 additions and 1 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue