7c84dbca4f
because the CSS was lazy-loaded the rules in arc-green did not win. included the css file in the main bundle to fix. the black dots can not be fixed via CSS because they are drawn in a `<canvas>` element unfortunately.
14 lines
377 B
JavaScript
14 lines
377 B
JavaScript
$(async () => {
|
|
const graphCanvas = document.getElementById('graph-canvas');
|
|
if (!graphCanvas) return;
|
|
|
|
const { default: gitGraph } = await import(/* webpackChunkName: "gitgraph" */'./gitGraph.js');
|
|
|
|
const graphList = [];
|
|
$('#graph-raw-list li span.node-relation').each(function () {
|
|
graphList.push($(this).text());
|
|
});
|
|
|
|
gitGraph(graphCanvas, graphList);
|
|
});
|