Remove href for non-expandable rows.

This commit is contained in:
Jonathan Wong 2015-09-27 14:17:51 -07:00
parent a053789344
commit d9d04f4857

View file

@ -52,7 +52,7 @@ history_table_options = {
$(td).html('<div><a href="#"><div style="float: left;">' + expand_history + '&nbsp;' + date + '</div></a></div>'); $(td).html('<div><a href="#"><div style="float: left;">' + expand_history + '&nbsp;' + date + '</div></a></div>');
} else { } else {
date = moment(cellData, "X").format(date_format); date = moment(cellData, "X").format(date_format);
$(td).html('<div><a href="#"><div style="float: left;"><i class="fa fa-fw"></i>&nbsp;' + date + '</div></a></div>'); $(td).html('<div style="float: left;"><i class="fa fa-fw"></i>&nbsp;' + date + '</div>');
} }
}, },
"searchable": false, "searchable": false,