This commit is contained in:
James 2020-03-29 10:14:47 +01:00
parent 9684311cea
commit 12f56b64ec

View File

@ -94,7 +94,7 @@ define(["jquery"], function ($) {
$('#heatcalc tbody th').css("left", $("#table_container").scrollLeft());
$('#heatcalc thead th:nth-child(1)').css("left", $("#table_container").scrollLeft());
/*
buttonOffset = $('#button_container').offset().top;
@ -188,6 +188,8 @@ function draw_table(){
// display the table
$("#table_container").append(table);
$("#hc_table thead").clone().prependTo("#table_container");
//enable highlighting
$("#hc_table td").on("mouseover", function() {
$(this).closest("tr").addClass("hover");