CC-3711: Verify Propel hasn't broken anything with its different handling

of boolean columns compared to Pear

- fixed
This commit is contained in:
James 2012-04-24 16:49:14 -04:00
parent 5be12c0a93
commit 957b750d6a
1 changed files with 2 additions and 2 deletions

View File

@ -85,8 +85,8 @@ function updateProgressBarValue(){
if (songPercentDone < 0 || songPercentDone > 100){
songPercentDone = 0;
currentSong = null;
} else {
if (currentSong.media_item_played == "t" && currentShow.length > 0){
} else {
if (currentSong.media_item_played == true && currentShow.length > 0){
scheduled_play_line_to_switch.attr("class", "line-to-switch on");
scheduled_play_div.addClass("ready")
scheduled_play_source = true;