diaspora/app/views/conversations/create.js.erb

14 lines
510 B
Text

var response = <%= raw @response.to_json %>;
<% if session[:mobile_view] %>
if(response.success) {
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 %>