diff options
author | Go MAEDA <maeda@farend.jp> | 2021-01-18 12:12:47 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2021-01-18 12:12:47 +0000 |
commit | db4f8323dc114e7c3e2d1c8d3cdd40040fdb81a1 (patch) | |
tree | 2147d5c3d12c9ef4d63badf3a0d18e535936e6d5 /public | |
parent | 73dc00cb2f1d20ee029c9f5c8193b36540b92881 (diff) | |
download | redmine-db4f8323dc114e7c3e2d1c8d3cdd40040fdb81a1.tar.gz redmine-db4f8323dc114e7c3e2d1c8d3cdd40040fdb81a1.zip |
Merged r20717 from trunk to 4.1-stable (#34247).
git-svn-id: http://svn.redmine.org/redmine/branches/4.1-stable@20720 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r-- | public/javascripts/application.js | 18 |
1 files changed, 9 insertions, 9 deletions
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) { |