blob: 997e179c842f98f921eb399a2d9eb3b4faa422fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$(async () => {
const graphCanvas = document.getElementById('graph-canvas');
if (!graphCanvas) return;
const [{ default: gitGraph }] = await Promise.all([
import(/* webpackChunkName: "gitgraph" */'./gitGraph.js'),
import(/* webpackChunkName: "gitgraph" */'../css/gitGraph.css'),
]);
const graphList = [];
$('#graph-raw-list li span.node-relation').each(function () {
graphList.push($(this).text());
});
gitGraph(graphCanvas, graphList);
});
|