11 lines
326 B
Text
11 lines
326 B
Text
<%= {:html => render(
|
|
:partial => 'shared/stream_element',
|
|
:locals => {
|
|
:post => @status_message,
|
|
:person => @status_message.person,
|
|
:photos => @status_message.photos,
|
|
:comments => [],
|
|
:all_aspects => current_user.aspects
|
|
}
|
|
),
|
|
:post_id => @status_message.id}.to_json.html_safe%>
|