Commit 87818c07 authored by Lucie LONG's avatar Lucie LONG
Browse files

WebUI:

- Adding link tooltip to the topology
parent 95e19c7e
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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