From 2ca2c0701538294853a1f344f85da1ec071ea257 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Wed, 16 Dec 2020 02:28:12 +0100 Subject: [PATCH] chg: Improve tooltip to expand/collapse node --- website/web/static/tree.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/web/static/tree.js b/website/web/static/tree.js index 8a23f2b..c51ef14 100644 --- a/website/web/static/tree.js +++ b/website/web/static/tree.js @@ -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.'); }; } )