Skip to content

Commit

Permalink
spaces around = has changed
Browse files Browse the repository at this point in the history
  • Loading branch information
draunger committed Jan 11, 2025
1 parent 6ec080c commit 9341560
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/ui/feature_list.js
Original file line number Diff line number Diff line change
Expand Up @@ -340,15 +340,15 @@ export function uiFeatureList(context) {

function mouseover(d3_event, d) {
if (d.id === -1) return;
highlightAfterMouseout=true;
highlightAfterMouseout = true;
idOnMouseover.add(d.id);
utilHighlightEntities([d.id], true, context);
}


function mouseout(d3_event, d) {
if (d.id === -1) return;
highlightAfterMouseout=false;
highlightAfterMouseout = false;
utilHighlightEntities([d.id], false, context);
}

Expand Down

0 comments on commit 9341560

Please sign in to comment.