mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 23:51:14 +03:00
f9a3aa8737
* Add scrollbars to graph and revlist if needed. * Add border
14 lines
288 B
JavaScript
14 lines
288 B
JavaScript
$(document).ready(function () {
|
|
var graphList = [];
|
|
|
|
if (!document.getElementById('graph-canvas')) {
|
|
return;
|
|
}
|
|
|
|
$("#graph-raw-list li span.node-relation").each(function () {
|
|
graphList.push($(this).text());
|
|
})
|
|
|
|
gitGraph(document.getElementById('graph-canvas'), graphList);
|
|
})
|