CC-3174 : timeline
don't highlight empty timeline.
This commit is contained in:
parent
ebf530a97c
commit
9f0741a684
1 changed files with 4 additions and 1 deletions
|
@ -413,7 +413,10 @@ var AIRTIME = (function(AIRTIME){
|
|||
|
||||
//if there is only 1 cursor on the page highlight it by default.
|
||||
if ($cursorRows.length === 1) {
|
||||
$cursorRows.addClass("cursor-selected-row");
|
||||
$td = $cursorRows.find("td:first");
|
||||
if (!$td.hasClass("dataTables_empty")) {
|
||||
$cursorRows.addClass("cursor-selected-row");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue