Removing some debugging info.

master
Ben Burlingham 9 years ago
parent 9157f31b3a
commit 4ea94d8cd6
  1. 2
      index.html
  2. 2
      js/bundle.js
  3. 4
      js/diagram.js

@ -36,7 +36,7 @@
</p>
<p>
This visualization is created using D3 and Three.js libraries.
This visualization is created using D3.js. Note that null-null relationships are not displayed on chord diagrams. As a result, matches with a score of 0-0 are not shown.
</p>
<hr>

@ -641,7 +641,7 @@
s2 += " (Extended time)";
}
return c1 + ': ' + s1 + '\n' + c2 + ': ' + s2 + '\n' + data.rounds[d.game.rId] + '\n \nsource (i,j) val: (' + d.source.index + ', ' + d.source.subindex + ') ' + d.source.value + '\n \ntarget (i,j) val: (' + d.target.index + ', ' + d.target.subindex + ') ' + d.target.value;
return c1 + ': ' + s1 + '\n' + c2 + ': ' + s2 + '\n' + data.rounds[d.game.rId];
});
},

@ -227,9 +227,7 @@ const Diagram = {
s2 += " (Extended time)";
}
return `${c1}: ${s1}\n${c2}: ${s2}\n${data.rounds[d.game.rId]}
\nsource (i,j) val: (${d.source.index}, ${d.source.subindex}) ${d.source.value}
\ntarget (i,j) val: (${d.target.index}, ${d.target.subindex}) ${d.target.value}`;
return `${c1}: ${s1}\n${c2}: ${s2}\n${data.rounds[d.game.rId]}`;
});
},

Loading…
Cancel
Save