Skip to content

Instantly share code, notes, and snippets.

@maltebar
Created May 2, 2015 16:16
Show Gist options
  • Save maltebar/4b294f94c08dd9d52a00 to your computer and use it in GitHub Desktop.
Save maltebar/4b294f94c08dd9d52a00 to your computer and use it in GitHub Desktop.
sending messages form
<div class="chatboxinput">
<%= form_for([@conversation, @message], :remote => true, :html => {id: "conversation_form_#{@conversation.id}"}) do |f| %>
<%= f.text_area :body, class: "chatboxtextarea", "data-cid" => @conversation.id %>
<%= hidden_field_tag :authenticity_token, form_authenticity_token %>
<% end %>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment