summaryrefslogtreecommitdiffstats
path: root/public/js/draw.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/js/draw.js')
-rw-r--r--public/js/draw.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/public/js/draw.js b/public/js/draw.js
new file mode 100644
index 0000000000..fadb3330b3
--- /dev/null
+++ b/public/js/draw.js
@@ -0,0 +1,17 @@
+$(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);
+
+ if ($("#rev-container")) {
+ $("#rev-container").css("width", document.body.clientWidth - document.getElementById('graph-canvas').width);
+ }
+})