CC-3711: Verify Propel hasn't broken anything with its different handling
of boolean columns compared to Pear - fixed
This commit is contained in:
parent
5be12c0a93
commit
957b750d6a
|
@ -85,8 +85,8 @@ function updateProgressBarValue(){
|
||||||
if (songPercentDone < 0 || songPercentDone > 100){
|
if (songPercentDone < 0 || songPercentDone > 100){
|
||||||
songPercentDone = 0;
|
songPercentDone = 0;
|
||||||
currentSong = null;
|
currentSong = null;
|
||||||
} else {
|
} else {
|
||||||
if (currentSong.media_item_played == "t" && currentShow.length > 0){
|
if (currentSong.media_item_played == true && currentShow.length > 0){
|
||||||
scheduled_play_line_to_switch.attr("class", "line-to-switch on");
|
scheduled_play_line_to_switch.attr("class", "line-to-switch on");
|
||||||
scheduled_play_div.addClass("ready")
|
scheduled_play_div.addClass("ready")
|
||||||
scheduled_play_source = true;
|
scheduled_play_source = true;
|
||||||
|
|
Loading…
Reference in New Issue