Sha256: fb7ca5594e69db9e3673f091f0364c7e5c5ebd0737b6887b5f2cdc9a9fa1460c

Contents?: true

Size: 1.28 KB

Versions: 4

Compression:

Stored size: 1.28 KB

Contents

<% 
muck_comment_form_id = "#{parent.dom_id}_comment_form"
muck_comment_mce_id = "#{parent.dom_id}_comment"
muck_comment_message_container_id = "#{@project.dom_id}_message_container"
muck_comment_message_id = "#{@project.dom_id}_message"
-%>
<div id="<%= muck_comment_message_container_id %>" class="help-box" style="display:none;">
  <div id="flashMessage" class="message">
    <div id="<%= muck_comment_message_id %>" class="notice message"></div>
  </div>
</div>
<div id="<%= parent.dom_id %>_new_comment" class="comment-form-wrapper">
  <%= form_for(:comment, :url => new_comment_path_with_parent(parent), :html => { :id => muck_comment_form_id, :class => "comment-form"} ) do |f| -%>
    <%= f.text_area :body, :class => 'mceEditor min', :id => muck_comment_mce_id %>
    <%= hidden_field_tag :parent_comment_id, comment.id unless comment.blank? -%>
    <%= hidden_field_tag :render_new, render_new -%>
    <%= f.submit comment_button_text || t('muck.comments.add_comment_button'), :class => "button #{comment_button_class}", :id => "comment_submit_#{parent.dom_id}" %>
  <% end -%>
</div>
<%= tiny_mce_scripts(:form_id => muck_comment_form_id, :mce_id => muck_comment_mce_id, :message_container_id => muck_comment_message_container_id, :message_id => muck_comment_message_id, :include_save_page => false) -%>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
muck-comments-3.2.0 app/views/comments/_tiny_mce_form.erb
muck-comments-3.1.0 app/views/comments/_tiny_mce_form.erb
muck-comments-3.0.2 app/views/comments/_tiny_mce_form.erb
muck-comments-3.0.1 app/views/comments/_tiny_mce_form.erb