- move mobile icons to mobile-folder, so they aren't included in the icons-sprite - move logos to branding/logos, and create a logos-sprite without the big other branding-images - delete duplicate images closes #6004
19 lines
789 B
Text
19 lines
789 B
Text
-# Copyright (c) 2010-2011, Diaspora Inc. This file is
|
|
-# licensed under the Affero General Public License version 3 or later. See
|
|
-# the COPYRIGHT file.
|
|
|
|
%li.comment{:data=>{:guid=>comment.id}, :class => ("hidden" if(defined? hidden))}
|
|
.content
|
|
.remove_comment
|
|
.right
|
|
- if user_signed_in? && comment.author == current_user.person
|
|
= link_to(image_tag("mobile/deletelabel.png"), comment_path(comment), method: :delete, data: { confirm: "#{t('are_you_sure')}" }, class: "remove")
|
|
.from
|
|
= person_image_link(comment.author)
|
|
= person_link(comment.author)
|
|
.info
|
|
%span
|
|
= timeago(comment.created_at ? comment.created_at : Time.now)
|
|
|
|
%div{:class => direction_for(comment.text)}
|
|
= comment.message.markdownified
|