From 76a26c056114719d365f7738bbc2ef9b76e03e6d Mon Sep 17 00:00:00 2001 From: Pitchaya Boonsarngsuk <2285135b@student.gla.ac.uk> Date: Fri, 2 Feb 2018 10:31:47 +0000 Subject: [PATCH] =?UTF-8?q?=E0=B9=80=E0=B8=9B=E0=B8=A5=E0=B8=B5=E0=B9=88?= =?UTF-8?q?=E0=B8=A2=E0=B8=99=E0=B8=8A=E0=B8=B7=E0=B9=88=E0=B8=AD=E0=B9=84?= =?UTF-8?q?=E0=B8=9F=E0=B8=A5=E0=B9=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...bourSampling-papaparsing.html => example-papaparsing.html} | 2 +- ...eighbourSampling-papaparsing.js => example-papaparsing.js} | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename examples/{d3-force-neighbourSampling-papaparsing.html => example-papaparsing.html} (96%) rename examples/js/src/{neighbourSampling-papaparsing.js => example-papaparsing.js} (95%) diff --git a/examples/d3-force-neighbourSampling-papaparsing.html b/examples/example-papaparsing.html similarity index 96% rename from examples/d3-force-neighbourSampling-papaparsing.html rename to examples/example-papaparsing.html index 9229059..e628eee 100644 --- a/examples/d3-force-neighbourSampling-papaparsing.html +++ b/examples/example-papaparsing.html @@ -239,7 +239,7 @@ - + diff --git a/examples/js/src/neighbourSampling-papaparsing.js b/examples/js/src/example-papaparsing.js similarity index 95% rename from examples/js/src/neighbourSampling-papaparsing.js rename to examples/js/src/example-papaparsing.js index a94b26e..bbd1bc2 100644 --- a/examples/js/src/neighbourSampling-papaparsing.js +++ b/examples/js/src/example-papaparsing.js @@ -154,7 +154,7 @@ function addNodesToDOM(data) { // it is a CLASS property). .attr("fill", function (d) { return color(d[COLOR_ATTRIBUTE]); - })/* + }) .on("mouseover", function (d) { div.transition() .duration(200) @@ -183,7 +183,7 @@ function addNodesToDOM(data) { node.attr("r", NODE_SIZE).attr("stroke-width", 0); clickedIndex = -1; } - })*/; + }); if (selectedData) unSelectNodes(selectedData); }