2019-05-16 14:57:47 +09:00
|
|
|
/* globals gitGraph */
|
|
|
|
|
2016-12-29 08:44:32 +09:00
|
|
|
$(document).ready(function () {
|
2019-07-16 10:51:46 +09:00
|
|
|
const graphList = [];
|
2019-05-16 14:57:47 +09:00
|
|
|
|
2016-12-29 08:44:32 +09:00
|
|
|
if (!document.getElementById('graph-canvas')) {
|
|
|
|
return;
|
|
|
|
}
|
2019-05-16 14:57:47 +09:00
|
|
|
|
2016-12-29 08:44:32 +09:00
|
|
|
$("#graph-raw-list li span.node-relation").each(function () {
|
|
|
|
graphList.push($(this).text());
|
|
|
|
})
|
2019-05-16 14:57:47 +09:00
|
|
|
|
2016-12-29 08:44:32 +09:00
|
|
|
gitGraph(document.getElementById('graph-canvas'), graphList);
|
|
|
|
})
|