summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarin Jankovski <marin@gitlab.com>2014-04-10 10:02:41 +0200
committerMarin Jankovski <marin@gitlab.com>2014-04-10 10:02:41 +0200
commitc6ed52309614b30ffd38ca62629d5e0f7874dfbe (patch)
tree416ef987b60d5c212237a07c1735992ef436dd3a
parente6707f6f278352d7ca63d9c0a3a3780e6c97be42 (diff)
downloadgitlab-ce-c6ed52309614b30ffd38ca62629d5e0f7874dfbe.tar.gz
Revert "Merge pull request #6720 from thmo/6-7-stable"
This reverts commit e6707f6f278352d7ca63d9c0a3a3780e6c97be42, reversing changes made to f88d30fac86b317248dbb47e01b050d9c1edbadf.
-rw-r--r--app/assets/javascripts/branch-graph.js.coffee4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/branch-graph.js.coffee b/app/assets/javascripts/branch-graph.js.coffee
index f6d57bd55bb..dd09ee51fe0 100644
--- a/app/assets/javascripts/branch-graph.js.coffee
+++ b/app/assets/javascripts/branch-graph.js.coffee
@@ -201,7 +201,7 @@ class BranchGraph
stroke: @colors[commit.space]
"stroke-width": 2
)
- r.image(gon.relative_url_root + commit.author.icon, avatar_box_x, avatar_box_y, 20, 20)
+ r.image(commit.author.icon, avatar_box_x, avatar_box_y, 20, 20)
r.text(@offsetX + @unitSpace * @mspace + 35, y, commit.message.split("\n")[0]).attr(
"text-anchor": "start"
font: "14px Monaco, monospace"
@@ -274,7 +274,7 @@ class BranchGraph
Raphael::commitTooltip = (x, y, commit) ->
boxWidth = 300
boxHeight = 200
- icon = @image(gon.relative_url_root + commit.author.icon, x, y, 20, 20)
+ icon = @image(commit.author.icon, x, y, 20, 20)
nameText = @text(x + 25, y + 10, commit.author.name)
idText = @text(x, y + 35, commit.id)
messageText = @text(x, y + 50, commit.message)