RS, IZ; Added ids to views
This commit is contained in:
parent
3d76fa26ba
commit
a540f09109
4 changed files with 5 additions and 5 deletions
|
|
@ -1,4 +1,4 @@
|
|||
%li.message{:class => ("mine" if mine?(post))}
|
||||
%li.message{:id => post.id, :class => ("mine" if mine?(post))}
|
||||
%span.from
|
||||
= link_to_person post.person
|
||||
%b wrote a new blog post
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
%li.message{:class => ("mine" if mine?(post))}
|
||||
%li.message{:id => post.id, :class => ("mine" if mine?(post))}
|
||||
%span.from
|
||||
= link_to_person post.person
|
||||
%b shared a link
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
%li.comment
|
||||
%li.comment{:id => comment.id}
|
||||
= comment.text
|
||||
\---
|
||||
= comment.person.real_name
|
||||
= comment.person.real_name
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
%li.message{:class => ("mine" if mine?(post))}
|
||||
%li.message{:id => post.id, :class => ("mine" if mine?(post))}
|
||||
%span.from
|
||||
= link_to_person post.person
|
||||
= post.message
|
||||
|
|
|
|||
Loading…
Reference in a new issue