Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

draw.js 288B

12345678910111213
  1. $(document).ready(function () {
  2. var graphList = [];
  3. if (!document.getElementById('graph-canvas')) {
  4. return;
  5. }
  6. $("#graph-raw-list li span.node-relation").each(function () {
  7. graphList.push($(this).text());
  8. })
  9. gitGraph(document.getElementById('graph-canvas'), graphList);
  10. })