everyone instead of all on aspect#index page. photo partial avatar now links to poster's profile.
This commit is contained in:
parent
f5a0f44c25
commit
18acdc7b55
2 changed files with 8 additions and 2 deletions
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
%li.message{:data=>{:guid=>post.id}}
|
||||
|
||||
= person_image_tag(post.person)
|
||||
= person_image_link(post.person)
|
||||
|
||||
.content
|
||||
.from
|
||||
|
|
|
|||
|
|
@ -4,11 +4,17 @@
|
|||
|
||||
|
||||
#left_pane
|
||||
%h2= @aspect
|
||||
- if @aspect == :all
|
||||
%h2= "Everyone"
|
||||
- else
|
||||
%h2= @aspect
|
||||
|
||||
.friend_pictures
|
||||
= owner_image_link
|
||||
|
||||
- for friend in @friends
|
||||
= person_image_link(friend)
|
||||
|
||||
- if @logged_in && (@aspect == :public)
|
||||
%h3 Facebook Friends
|
||||
- @fb_friends = MiniFB.get(@access_token, 'me', :type => "friends")
|
||||
|
|
|
|||
Loading…
Reference in a new issue