Skip to content

Commit

Permalink
fix text
Browse files Browse the repository at this point in the history
  • Loading branch information
joneugster committed Sep 2, 2024
1 parent 862902e commit cad64a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions html-template/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ <h1>Import Graph</h1>
<div class="key-wrapper">
<ul id="key"></ul>
<div class="status" id="statusWrapper">
<p class="placeholder">Hover over a node to show only the files it imports. Hover over a directory name to highlight only the files in that directory</p>
<p class="placeholder">Hover over a node to show only the files importing it. Hover over a directory name to highlight only the files in that directory</p>
<div class="message" id="statusMessage"></div>
</div>
</div>
Expand Down Expand Up @@ -466,8 +466,8 @@ <h1>Import Graph</h1>
descendants.add(node2);
// ndecls_trans += graph.getNodeAttribute(node2, 'decl_count');
});
graphologyLibrary.traversal.bfsFromNode(rev_graph, node, function(node, attr, depth) {
ancestors.add(node);
graphologyLibrary.traversal.bfsFromNode(rev_graph, node, function(node2, attr, depth) {
ancestors.add(node2);
});
state.hoveredDescendants = descendants;
state.hoveredAncestors = ancestors;
Expand Down

0 comments on commit cad64a5

Please sign in to comment.