Skip to content

Commit

Permalink
precision thingie
Browse files Browse the repository at this point in the history
  • Loading branch information
lzvdijk committed Sep 5, 2019
1 parent c3c7e75 commit 3cf24dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion web/static/2d/kathe.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ fetch("/search/?search=" + unescaped_searchvalue, { cache: "no-store" })
.nodeColor(d => d.color)
.nodeLabel(d => d.inputname)
.linkLabel(d => d.ssdeepcompare)
.linkHoverPrecision('1')
.linkHoverPrecision(1)
.linkWidth('value')
.graphData(myData)
.onNodeClick(node => {
Expand All @@ -155,6 +155,7 @@ fetch("/search/?search=" + unescaped_searchvalue, { cache: "no-store" })
Graph.zoom(8, 2000);
}
}

}
})
.onNodeRightClick(node => {
Expand Down
2 changes: 1 addition & 1 deletion web/templates/kathe.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@

<footer class="h-25 bg-light">
<!-- row search form and info -->
<div class="row h-100">
<div class="row mx-5 h-100">
<!-- col search form and info -->
<div class="col-md-6 overflow-auto">
<div id="info0" class="text-muted">Left-click node for detailed info</div>
Expand Down

0 comments on commit 3cf24dd

Please sign in to comment.