chg: Improve tooltip to expand/collapse node

pull/137/head
Raphaël Vinot 2020-12-16 02:28:12 +01:00
parent 910a154cf7
commit 2ca2c07015
1 changed files with 1 additions and 1 deletions

View File

@ -600,7 +600,7 @@ function update(root, computed_node_width=0) {
.style('opacity', 1)
.style('left', `${event.pageX + 10}px`)
.style('top', `${event.pageY + 10}px`)
.text(d.children ? 'Collapse the childrens of this node.' : 'Expand the childrens of this node.');
.text(d.children ? 'Collapse the URLs loaded by this node.' : 'Expand the URLs loaded by this node.');
};
}
)