Merge branch 'CC-3174' into devel
This commit is contained in:
commit
e242972a78
4 changed files with 45 additions and 5 deletions
|
@ -228,7 +228,8 @@ var AIRTIME = (function(AIRTIME){
|
|||
//background-color to imitate calendar color.
|
||||
r,g,b,a,
|
||||
$nRow = $(nRow),
|
||||
$image;
|
||||
$image,
|
||||
$div;
|
||||
|
||||
fnPrepareSeparatorRow = function fnPrepareSeparatorRow(sRowContent, sClass, iNodeIndex) {
|
||||
|
||||
|
@ -252,7 +253,25 @@ var AIRTIME = (function(AIRTIME){
|
|||
node.innerHTML = '';
|
||||
cl = 'sb-header';
|
||||
|
||||
if (aData.record === true) {
|
||||
$div = $("<div/>", {
|
||||
"class": "small-icon recording"
|
||||
});
|
||||
$(node).append($div);
|
||||
}
|
||||
else if(aData.rebroadcast === true) {
|
||||
$div = $("<div/>", {
|
||||
"class": "small-icon rebroadcast"
|
||||
});
|
||||
$(node).append($div);
|
||||
}
|
||||
|
||||
sSeparatorHTML = '<span class="show-title">'+aData.title+'</span>';
|
||||
|
||||
if (aData.rebroadcast === true) {
|
||||
sSeparatorHTML += '<span>'+aData.rebroadcast_title+'</span>';
|
||||
}
|
||||
|
||||
sSeparatorHTML += '<span class="push-right">';
|
||||
|
||||
if (aData.startDate === aData.endDate) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue