diff options
author | winniehell <git@winniehell.de> | 2016-10-25 21:23:48 +0200 |
---|---|---|
committer | winniehell <git@winniehell.de> | 2016-11-01 08:15:31 +0100 |
commit | 009f1251df93f9b7047d7a8da5d1c1d36641922d (patch) | |
tree | c7d400861dc79cae6c0e4f6580e96b11c2c25ce7 | |
parent | b328c7885532ccff70e1f9f7dc970a8dde0c52d6 (diff) | |
download | gitlab-ce-009f1251df93f9b7047d7a8da5d1c1d36641922d.tar.gz |
Do not show tooltip for active element (!7105)
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | app/assets/javascripts/application.js | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 372ddecc98b..b37c4a6a459 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ Please view this file on the master branch, on stable branches it's out of date. - Removed delete branch tooltip !6954 - Stop unauthorized users dragging on milestone page (blackst0ne) - Restore issue boards welcome message when a project is created !6899 +- Do not show tooltip for active element !7105 (winniehell) - Escape ref and path for relative links !6050 (winniehell) - Fixed link typo on /help/ui to Alerts section. !6915 (Sam Rose) - Fix filtering of milestones with quotes in title (airatshigapov) diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js index e57cf1b3a58..02a55040939 100644 --- a/app/assets/javascripts/application.js +++ b/app/assets/javascripts/application.js @@ -188,6 +188,7 @@ // Close select2 on escape }); // Initialize tooltips + $.fn.tooltip.Constructor.DEFAULTS.trigger = 'hover'; $body.tooltip({ selector: '.has-tooltip, [data-toggle="tooltip"]', placement: function(_, el) { |