Actions
Patch #2632
closedNews comment form has no box
Start date:
2009-01-31
Due date:
% Done:
50%
Estimated time:
0.10 h
Description
The following patch boxes the news comment, as every other instance of commenting (e.g. on an existing ticket or in a forum) was boxed. Visual consistency and all that jazz. :)
### Eclipse Workspace Patch 1.0 #P Redmine Index: app/views/news/show.rhtml =================================================================== --- app/views/news/show.rhtml (revision 2338) +++ app/views/news/show.rhtml (working copy) @@ -46,10 +46,12 @@ </div> <% if authorize_for 'news', 'add_comment' %> -<p><%= toggle_link l(:label_comment_add), "add_comment_form", :focus => "comment_comments" %></p> -<% form_tag({:action => 'add_comment', :id => @news}, :id => "add_comment_form", :style => "display:none;") do %> -<%= text_area 'comment', 'comments', :cols => 80, :rows => 15, :class => 'wiki-edit' %> -<%= wikitoolbar_for 'comment_comments' %> +<p><%= toggle_link l(:label_comment_add), "add_comment_box", :focus => "comment_comments" %></p> +<div id="add_comment_box" class="box" style="display: none"> + <% form_tag({:action => 'add_comment', :id => @news}, :id => "add_comment_form") do %> + <%= text_area 'comment', 'comments', :cols => 80, :rows => 15, :class => 'wiki-edit' %> + <%= wikitoolbar_for 'comment_comments' %> +</div> <p><%= submit_tag l(:button_add) %></p> <% end %> <% end %>
Actions