12 lines
351 B
Text
12 lines
351 B
Text
<%= {:html => render(
|
|
:partial => 'shared/stream_element',
|
|
:locals => {
|
|
:post => @status_message,
|
|
:author => @status_message.author,
|
|
:photos => @status_message.photos,
|
|
:comments => [],
|
|
:all_aspects => current_user.aspects,
|
|
:reshare => nil
|
|
}
|
|
),
|
|
:post_id => @status_message.guid}.to_json.html_safe%>
|