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}}
|
%li.message{:data=>{:guid=>post.id}}
|
||||||
|
|
||||||
= person_image_tag(post.person)
|
= person_image_link(post.person)
|
||||||
|
|
||||||
.content
|
.content
|
||||||
.from
|
.from
|
||||||
|
|
|
||||||
|
|
@ -4,11 +4,17 @@
|
||||||
|
|
||||||
|
|
||||||
#left_pane
|
#left_pane
|
||||||
|
- if @aspect == :all
|
||||||
|
%h2= "Everyone"
|
||||||
|
- else
|
||||||
%h2= @aspect
|
%h2= @aspect
|
||||||
|
|
||||||
.friend_pictures
|
.friend_pictures
|
||||||
= owner_image_link
|
= owner_image_link
|
||||||
|
|
||||||
- for friend in @friends
|
- for friend in @friends
|
||||||
= person_image_link(friend)
|
= person_image_link(friend)
|
||||||
|
|
||||||
- if @logged_in && (@aspect == :public)
|
- if @logged_in && (@aspect == :public)
|
||||||
%h3 Facebook Friends
|
%h3 Facebook Friends
|
||||||
- @fb_friends = MiniFB.get(@access_token, 'me', :type => "friends")
|
- @fb_friends = MiniFB.get(@access_token, 'me', :type => "friends")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue