|
3 | 3 | <%= render :partial => 'conflict' if @conflict %>
|
4 | 4 | <div class="box">
|
5 | 5 | <% if @issue.attributes_editable? %>
|
6 |
| - <fieldset class="tabular"><legend><%= l(:label_change_properties) %></legend> |
| 6 | + <fieldset id="attributes" class="tabular"><legend><%= l(:label_change_properties) %></legend> |
7 | 7 | <div id="all_attributes">
|
8 | 8 | <%= render :partial => 'form', :locals => {:f => f} %>
|
9 | 9 | </div>
|
10 | 10 | </fieldset>
|
11 | 11 | <% end %>
|
12 | 12 | <% if User.current.allowed_to?(:log_time, @project) %>
|
13 |
| - <fieldset class="tabular"><legend><%= l(:button_log_time) %></legend> |
| 13 | + <fieldset id="log_time" class="tabular"><legend><%= l(:button_log_time) %></legend> |
14 | 14 | <%= labelled_fields_for :time_entry, @time_entry do |time_entry| %>
|
15 | 15 | <div class="splitcontent">
|
16 | 16 | <div class="splitcontentleft">
|
|
28 | 28 | </fieldset>
|
29 | 29 | <% end %>
|
30 | 30 | <% if @issue.notes_addable? %>
|
31 |
| - <fieldset><legend><%= l(:field_notes) %></legend> |
| 31 | + <fieldset id="add_notes"><legend><%= l(:field_notes) %></legend> |
32 | 32 | <%= f.text_area :notes, :cols => 60, :rows => 10, :class => 'wiki-edit',
|
33 | 33 | :data => {
|
34 | 34 | :auto_complete => true
|
|
43 | 43 | <%= call_hook(:view_issues_edit_notes_bottom, { :issue => @issue, :notes => @notes, :form => f }) %>
|
44 | 44 | </fieldset>
|
45 | 45 |
|
46 |
| - <fieldset><legend><%= l(:label_attachment_plural) %></legend> |
| 46 | + <fieldset id="add_attachments"><legend><%= l(:label_attachment_plural) %></legend> |
47 | 47 | <% if @issue.attachments.any? && @issue.safe_attribute?('deleted_attachment_ids') %>
|
48 | 48 | <div class="contextual"><%= link_to l(:label_edit_attachments), '#', :onclick => "$('#existing-attachments').toggle(); return false;" %></div>
|
49 | 49 | <div id="existing-attachments" style="<%= @issue.deleted_attachment_ids.blank? ? 'display:none;' : '' %>">
|
|
0 commit comments