Fix points not unhighlighting onmouseout

pull/4202/head
Isaac Connor 2022-04-28 16:08:25 -04:00
parent 0fa0a48771
commit c572df48ed
1 changed files with 1 additions and 1 deletions

View File

@ -474,7 +474,7 @@ function drawZonePoints() {
var row = document.createElement('tr');
row.id = 'row'+i;
$j(row).mouseover(highlightOn.bind(i, i));
$j(row).mouseout(highlightOn.bind(i, i));
$j(row).mouseout(highlightOff.bind(i, i));
var cell = document.createElement('td');
$j(cell).text(i+1).appendTo(row);