]> source.dussan.org Git - redmine.git/commitdiff
Web browser freezes when displaying a workflow page with a large number of issue...
authorGo MAEDA <maeda@farend.jp>
Sun, 17 Jan 2021 02:23:14 +0000 (02:23 +0000)
committerGo MAEDA <maeda@farend.jp>
Sun, 17 Jan 2021 02:23:14 +0000 (02:23 +0000)
Patch by Marius BALTEANU.

git-svn-id: http://svn.redmine.org/redmine/trunk@20717 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/workflows/_form.html.erb
public/javascripts/application.js

index 32639753c71591077d062aaebd8c71106adeb760..429ccb4e6257a8f95b435b2834f12d9b00d78458 100644 (file)
@@ -40,7 +40,7 @@
     </td>
     <% for new_status in @statuses -%>
     <% checked = (old_status == new_status) || (transition_counts[[old_status, new_status]] > 0) %>
-    <td class="<%= checked ? 'enabled' : '' %>" title="<%= old_status_name %> &#187; <%= new_status.name %>">
+    <td class="no-tooltip <%= checked ? 'enabled' : '' %>" title="<%= old_status_name %> &#187; <%= new_status.name %>">
       <%= transition_tag transition_counts[[old_status, new_status]], old_status, new_status, name %>
     </td>
     <% end -%>
index b214f7540f58299dc08fa65a08825988f715d692..feabd9ca9ff6105ce31e02ce1a95cbbc5d720d62 100644 (file)
@@ -1072,15 +1072,15 @@ function setupWikiTableSortableHeader() {
 }
 
 $(function () {
-    $('[title]').tooltip({
-        show: {
-          delay: 400
-        },
-        position: {
-          my: "center bottom-5",
-          at: "center top"
-        }
-    });
+  $("[title]:not(.no-tooltip)").tooltip({
+    show: {
+      delay: 400
+    },
+    position: {
+      my: "center bottom-5",
+      at: "center top"
+    }
+  });
 });
 
 function inlineAutoComplete(element) {