summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/views/workflows/_form.html.erb2
-rw-r--r--public/javascripts/application.js18
2 files changed, 10 insertions, 10 deletions
diff --git a/app/views/workflows/_form.html.erb b/app/views/workflows/_form.html.erb
index 32639753c..429ccb4e6 100644
--- a/app/views/workflows/_form.html.erb
+++ b/app/views/workflows/_form.html.erb
@@ -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 -%>
diff --git a/public/javascripts/application.js b/public/javascripts/application.js
index e4e902d9c..f1262d5e0 100644
--- a/public/javascripts/application.js
+++ b/public/javascripts/application.js
@@ -997,15 +997,15 @@ function setupAttachmentDetail() {
$(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) {