diff options
author | Steven Thonus <github@popl.nl> | 2013-10-06 20:13:56 +0200 |
---|---|---|
committer | Steven Thonus <github@popl.nl> | 2013-10-09 09:05:09 +0200 |
commit | 65cad57a35002a9fd168863ae8a4d7ca045fb938 (patch) | |
tree | 61227cc71fea23b8f75852cd92452e4f2fd47179 /app/views/projects/snippets | |
parent | 358426d66164d720d793ea37bacb4fc331c30171 (diff) | |
download | gitlab-ce-65cad57a35002a9fd168863ae8a4d7ca045fb938.tar.gz |
avatar upload on profile page
Diffstat (limited to 'app/views/projects/snippets')
-rw-r--r-- | app/views/projects/snippets/_snippet.html.haml | 2 | ||||
-rw-r--r-- | app/views/projects/snippets/show.html.haml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/snippets/_snippet.html.haml b/app/views/projects/snippets/_snippet.html.haml index fc1c0893b08..6185e35cf6f 100644 --- a/app/views/projects/snippets/_snippet.html.haml +++ b/app/views/projects/snippets/_snippet.html.haml @@ -16,6 +16,6 @@ = "##{snippet.id}" %span by - = image_tag gravatar_icon(snippet.author_email), class: "avatar avatar-inline s16" + = image_tag avatar_icon(snippet.author_email), class: "avatar avatar-inline s16" = snippet.author_name %span.light #{time_ago_in_words(snippet.created_at)} ago diff --git a/app/views/projects/snippets/show.html.haml b/app/views/projects/snippets/show.html.haml index 4a07ebf7fd9..ac32f4866b6 100644 --- a/app/views/projects/snippets/show.html.haml +++ b/app/views/projects/snippets/show.html.haml @@ -5,7 +5,7 @@ = "##{@snippet.id}" %span.light by - = image_tag gravatar_icon(@snippet.author_email), class: "avatar avatar-inline s16" + = image_tag avatar_icon(@snippet.author_email), class: "avatar avatar-inline s16" = @snippet.author_name %div= render 'projects/snippets/blob' %div#notes= render "projects/notes/notes_with_form" |