CC-3174 : showbuilder
using the new status column in cc_schedule to colour boundary/overbooked tracks.
This commit is contained in:
parent
0f9800a6bd
commit
3bfbe036c7
3 changed files with 21 additions and 37 deletions
|
@ -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");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue