Skip to content
Snippets Groups Projects
Commit 87818c07 authored by longllu's avatar longllu
Browse files

WebUI:

- Adding link tooltip to the topology
parent 95e19c7e
No related branches found
No related tags found
2 merge requests!54Release 2.0.0,!40WebUI:
......@@ -89,6 +89,8 @@ d3.json("{{ url_for('main.topology') }}", function(data) {
// node tooltip
node.append("title").text(function(d) { return d.id; });
// link tooltip
link.append("title").text(function(d) { return d.id; });
// link style
link
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment