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