around line 799. I think it's basically trying to make a crosshair on the nodes.
// d3.selectAll(".node").style("cursor", "crosshair");
d3.enter().append("rect")
.attr("class", "background")
.style("visibility", "hidden")
.style("cursor", "crosshair");