Files
Atay-Makhzan/public/js/draw.js
T

16 lines
309 B
JavaScript
Raw Normal View History

/* globals gitGraph */
2016-12-29 00:44:32 +01:00
$(document).ready(function () {
var graphList = [];
2016-12-29 00:44:32 +01:00
if (!document.getElementById('graph-canvas')) {
return;
}
2016-12-29 00:44:32 +01:00
$("#graph-raw-list li span.node-relation").each(function () {
graphList.push($(this).text());
})
2016-12-29 00:44:32 +01:00
gitGraph(document.getElementById('graph-canvas'), graphList);
})