diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-06-30 15:23:32 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-06-30 15:23:32 +0200 |
commit | f9261e659676ab8b736e8966c63f263d83e98d51 (patch) | |
tree | 739a4550a809b52b8ad484f95f7a788d052eea5b /app/views | |
parent | b42c40bff3015c8f07829653aa4caf6772ead968 (diff) | |
download | gitlab-ce-f9261e659676ab8b736e8966c63f263d83e98d51.tar.gz |
Open big avatar when click on user image
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/users/show.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/users/show.html.haml b/app/views/users/show.html.haml index 15d53499e03..43d847831d6 100644 --- a/app/views/users/show.html.haml +++ b/app/views/users/show.html.haml @@ -9,7 +9,7 @@ .row %section.col-md-8 .header-with-avatar - = link_to avatar_icon(@user.email), target: '_blank' do + = link_to avatar_icon(@user.email, 400), target: '_blank' do = image_tag avatar_icon(@user.email, 90), class: "avatar avatar-tile s90", alt: '' %h3 = @user.name |