-No ticket: Fixed recording light on, even after record show ended.

This commit is contained in:
martin 2011-03-24 21:36:14 -04:00
parent e27a66698a
commit 0cab539f8a
1 changed files with 3 additions and 2 deletions

View File

@ -165,11 +165,12 @@ function updatePlaybar(){
/* Column 1 update */
$('#playlist').text("Current Show:");
var recElem = $('.recording-show');
if (currentShow.length > 0){
$('#playlist').text(currentShow[0].name);
var recElem = $('.recording-show');
(currentShow[0].record == "1") ? recElem.show(): recElem.hide();
} else {
recElem.hide();
}
$('#show-length').empty();