Files
danbooru/app/views/comments/_form.html.erb
2013-06-18 17:27:46 -07:00

6 lines
427 B
Plaintext

<%= simple_form_for(comment, :html => {:class => "edit_comment"}) do |f| %>
<%= dtext_field "comment", "body", :value => comment.body, :input_id => "comment_body_for_#{comment.id}", :preview_id => "dtext-preview-for-#{comment.id}" %>
<%= f.button :submit, "Submit" %>
<%= dtext_preview_button "comment", "body", :input_id => "comment_body_for_#{comment.id}", :preview_id => "dtext-preview-for-#{comment.id}" %>
<% end %>