c1b05e7b86
-Alt text to image was set to hash, which would make the page display hashes if the image/gravatar wasn't available, set the alt text to '', and made the main tool bar image follow the same or similar constraints as the other images (.avatar, .s26) Conflicts: app/assets/stylesheets/themes/ui_bb.scss app/views/snippets/_snippet.html.haml Change-Id: I42e1e86f535486fd2556d4b3e4591f3676eea033
16 lines
454 B
Text
16 lines
454 B
Text
- if event.proper?
|
|
%div.event-item
|
|
%span.cgray.pull-right
|
|
#{time_ago_in_words(event.created_at)} ago.
|
|
|
|
= cache event do
|
|
= image_tag gravatar_icon(event.author_email), class: "avatar s24", alt:''
|
|
|
|
- if event.push?
|
|
= render "events/event/push", event: event
|
|
.clearfix
|
|
- elsif event.note?
|
|
= render "events/event/note", event: event
|
|
- else
|
|
= render "events/event/common", event: event
|
|
|