Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
412 B
13 lines
412 B
export default async function initGitGraph() { |
|
const graphCanvas = document.getElementById('graph-canvas'); |
|
if (!graphCanvas) return; |
|
|
|
const {default: gitGraph} = await import(/* webpackChunkName: "gitgraph" */'../vendor/gitgraph.js'); |
|
|
|
const graphList = []; |
|
$('#graph-raw-list li span.node-relation').each(function () { |
|
graphList.push($(this).text()); |
|
}); |
|
|
|
gitGraph(graphCanvas, graphList); |
|
}
|
|
|