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