CC-3174 : showbuilder

using the new status column in cc_schedule to colour boundary/overbooked tracks.
This commit is contained in:
Naomi Aro 2012-03-01 15:09:13 +01:00
parent 0f9800a6bd
commit 3bfbe036c7
3 changed files with 21 additions and 37 deletions

View file

@ -191,10 +191,10 @@ var AIRTIME = (function(AIRTIME){
}
//status used to colour tracks.
if (aData.status === 1) {
if (aData.status === 2) {
$(nRow).addClass("sb-boundry");
}
else if (aData.status === 2) {
else if (aData.status === 0) {
$(nRow).addClass("sb-over");
}