Skip to content

Commit

Permalink
[webui] More lines in "Add reviewer" dialog description textarea.
Browse files Browse the repository at this point in the history
Same as other dialogs. Also add a line to the review comment textarea,
seems like Chrome and Firefox differ on the interpretation of "one line"
;-)
  • Loading branch information
saschpe committed Mar 20, 2012
1 parent e0d6c48 commit ec48e26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/webui/app/views/request/_add_reviewer_dialog.rhtml
Expand Up @@ -44,7 +44,7 @@
<% end %>
</span>
<%= label_tag(:review_comment, "Comment for reviewer:") %><br/>
<%= text_area_tag('review_comment', nil, :size => '80x1') %>
<%= text_area_tag('review_comment', nil, :size => '80x3') %>
<% javascript_tag do %>
$('#review_type').change(function() {
switch($('#review_type option:selected').attr('value')) {
Expand Down
2 changes: 1 addition & 1 deletion src/webui/app/views/request/show.html.erb
Expand Up @@ -80,7 +80,7 @@
<div class="review_descision_display <%= 'hidden' if @can_add_reviews && @my_open_reviews.length > 0 %>" id="review_descision_display_-1">
<% if @can_handle_request %>
<% form_tag({:action => 'changerequest'}, {:id => 'request_handle_form'}) do %>
<p><%= text_area_tag(:reason, 'Please add a comment', :size => '80x1', :style => "width: 99%") %></p>
<p><%= text_area_tag(:reason, 'Please add a comment', :size => '80x2', :style => "width: 99%") %></p>
<p>
<%= hidden_field_tag(:id, @id) %>
<% if ['new', 'review'].include?(@state) && @is_target_maintainer %>
Expand Down

0 comments on commit ec48e26

Please sign in to comment.