Fix link_to_member to not be bold by default

This commit is contained in:
Riyad Preukschas 2013-01-11 20:16:37 +01:00
parent 167f26b90d
commit b3bfb75252
1 changed files with 6 additions and 8 deletions

View File

@ -26,19 +26,17 @@ module ProjectsHelper
# Build avatar image tag
avatar = image_tag(gravatar_icon(author.try(:email)), width: 16, class: "lil_av")
# Build name strong tag
name = content_tag :strong, author.name, class: 'author'
# Build name span tag
name = content_tag :span, author.name, class: 'author'
author_html = avatar + name
tm = project.team_member_by_id(author)
content_tag :span, class: 'member-link' do
if tm
link_to author_html, project_team_member_path(project, tm), class: "author_link"
else
author_html
end
if tm
link_to author_html, project_team_member_path(project, tm), class: "author_link"
else
author_html
end
end