]> source.dussan.org Git - redmine.git/commitdiff
use radio buttons instead of a select at attachment as same as r10426 repository
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Tue, 18 Sep 2012 23:48:52 +0000 (23:48 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Tue, 18 Sep 2012 23:48:52 +0000 (23:48 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10427 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/attachments/diff.html.erb

index f429ba3f8187d8b1c4c85642ff7f4c69616cca47..b8fb690487bb2dd559df0c992cf3ecec4e0f1afc 100644 (file)
@@ -6,15 +6,13 @@
 <p><%= link_to_attachment @attachment, :text => l(:button_download), :download => true -%>
    <span class="size">(<%= number_to_human_size @attachment.filesize %>)</span></p>
 </div>
-<p>
 <%= form_tag({}, :method => 'get') do %>
-    <label><%= l(:label_view_diff) %></label>
-    <%= select_tag 'type',
-                    options_for_select(
-                      [[l(:label_diff_inline), "inline"], [l(:label_diff_side_by_side), "sbs"]], @diff_type),
-                    :onchange => "if (this.value != '') {this.form.submit()}" %>
+  <p>
+    <%= l(:label_view_diff) %>:
+    <label><%= radio_button_tag 'type', 'inline', @diff_type != 'sbs', :onchange => "this.form.submit()" %> <%= l(:label_diff_inline) %></label>
+    <label><%= radio_button_tag 'type', 'sbs', @diff_type == 'sbs', :onchange => "this.form.submit()" %> <%= l(:label_diff_side_by_side) %></label>
+  </p>
 <% end %>
-</p>
 <%= render :partial => 'common/diff', :locals => {:diff => @diff, :diff_type => @diff_type, :diff_style => nil} %>
 
 <% html_title @attachment.filename %>