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.
14 lines
414 B
14 lines
414 B
5 years ago
|
export default async function initGitGraph() {
|
||
5 years ago
|
const graphCanvas = document.getElementById('graph-canvas');
|
||
|
if (!graphCanvas) return;
|
||
|
|
||
5 years ago
|
const { default: gitGraph } = await import(/* webpackChunkName: "gitgraph" */'../vendor/gitGraph.js');
|
||
5 years ago
|
|
||
|
const graphList = [];
|
||
|
$('#graph-raw-list li span.node-relation').each(function () {
|
||
|
graphList.push($(this).text());
|
||
|
});
|
||
|
|
||
|
gitGraph(graphCanvas, graphList);
|
||
5 years ago
|
}
|