10 lines
475 B
Text
10 lines
475 B
Text
var response = <%= raw @response.to_json %>;
|
|
<% if session[:mobile_view] %>
|
|
window.location.href = "<%= conversations_path(conversation_id: @conversation.id) %>";
|
|
<% else %>
|
|
Diaspora.page.flashMessages.render({ 'success':response.success, 'notice':response.message });
|
|
if(response.success){
|
|
$("#new_conversation").removeClass('form_do_not_clear').clearForm();
|
|
window.location.href = "<%= conversations_path(conversation_id: @conversation.id) %>";
|
|
}
|
|
<% end %>
|