diff options
author | Go MAEDA <maeda@farend.jp> | 2021-04-06 06:07:23 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2021-04-06 06:07:23 +0000 |
commit | 684f88313760cf33f844ee3b265e46a6b0cbb739 (patch) | |
tree | da9ac3512441fc9e80950a75d96a103ae53bd01e | |
parent | a92205c2722cf11a7bc96d5be96158d372e892a5 (diff) | |
download | redmine-684f88313760cf33f844ee3b265e46a6b0cbb739.tar.gz redmine-684f88313760cf33f844ee3b265e46a6b0cbb739.zip |
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
-rw-r--r-- | app/views/workflows/_form.html.erb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/workflows/_form.html.erb b/app/views/workflows/_form.html.erb index 429ccb4e6..d565a02a2 100644 --- a/app/views/workflows/_form.html.erb +++ b/app/views/workflows/_form.html.erb @@ -4,7 +4,7 @@ <th> <%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input[type=checkbox]:not(:disabled)')", :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}", - :class => 'icon-only icon-checked') %> + :class => 'no-tooltip icon-only icon-checked') %> <%=l(:label_current_status)%> </th> <th colspan="<%= @statuses.length %>"><%=l(:label_new_statuses_allowed)%></th> @@ -15,7 +15,7 @@ <td style="width:<%= 75 / @statuses.size %>%;"> <%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input[type=checkbox]:not(:disabled).new-status-#{new_status.id}')", :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}", - :class => 'icon-only icon-checked') %> + :class => 'no-tooltip icon-only icon-checked') %> <%= new_status.name %> </td> <% end %> @@ -29,7 +29,7 @@ <td class="name"> <%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input[type=checkbox]:not(:disabled).old-status-#{old_status.try(:id) || 0}')", :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}", - :class => 'icon-only icon-checked') %> + :class => 'no-tooltip icon-only icon-checked') %> <% if old_status %> <% old_status_name = old_status.name %> <%= old_status_name %> |