aboutsummaryrefslogtreecommitdiffstats
path: root/html
diff options
context:
space:
mode:
authorAdam Spiers <git@adamspiers.org>2015-02-01 19:06:46 +0000
committerAdam Spiers <git@adamspiers.org>2015-02-01 19:06:46 +0000
commitdc8a60ae3d4a12bf74a1f035c33b7115befc2c0a (patch)
treeb6b7111e8fcba9d89884628afe0d48d40a851042 /html
parent299ec203d5aa7165bb25e7f9e0e57893a5617c99 (diff)
downloadgit-deps-dc8a60ae3d4a12bf74a1f035c33b7115befc2c0a.tar.gz
fix overgrown indent
Diffstat (limited to 'html')
-rw-r--r--html/js/git-deps-graph.coffee6
1 files changed, 3 insertions, 3 deletions
diff --git a/html/js/git-deps-graph.coffee b/html/js/git-deps-graph.coffee
index 7c10d96..b2d36fa 100644
--- a/html/js/git-deps-graph.coffee
+++ b/html/js/git-deps-graph.coffee
@@ -204,9 +204,9 @@ draw_graph = (commitish) ->
# Questionable attempt to use dagre layout as starting positions
# https://github.com/tgdwyer/WebCola/issues/63
nodes.each (d, i) ->
- n = gdl.node d.sha1
- d.x = n.x
- d.y = n.y
+ n = gdl.node d.sha1
+ d.x = n.x
+ d.y = n.y
nodes.attr "transform", (d) ->
translate d.x, d.y