Skip to content

Commit 684f883

Browse files
committed
Disable jQuery UI tooltip on workflow page to improve loading speed (#35034).
Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@20919 e93f8b46-1217-0410-a6f0-8f06a7374b81
1 parent a92205c commit 684f883

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/views/workflows/_form.html.erb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<th>
55
<%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input[type=checkbox]:not(:disabled)')",
66
:title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}",
7-
:class => 'icon-only icon-checked') %>
7+
:class => 'no-tooltip icon-only icon-checked') %>
88
<%=l(:label_current_status)%>
99
</th>
1010
<th colspan="<%= @statuses.length %>"><%=l(:label_new_statuses_allowed)%></th>
@@ -15,7 +15,7 @@
1515
<td style="width:<%= 75 / @statuses.size %>%;">
1616
<%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input[type=checkbox]:not(:disabled).new-status-#{new_status.id}')",
1717
:title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}",
18-
:class => 'icon-only icon-checked') %>
18+
:class => 'no-tooltip icon-only icon-checked') %>
1919
<%= new_status.name %>
2020
</td>
2121
<% end %>
@@ -29,7 +29,7 @@
2929
<td class="name">
3030
<%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input[type=checkbox]:not(:disabled).old-status-#{old_status.try(:id) || 0}')",
3131
:title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}",
32-
:class => 'icon-only icon-checked') %>
32+
:class => 'no-tooltip icon-only icon-checked') %>
3333
<% if old_status %>
3434
<% old_status_name = old_status.name %>
3535
<%= old_status_name %>

0 commit comments

Comments
 (0)