Merge branch 'bootstrap-tooltip-hover' into 'master'

Set bootstrap tooltip vue directive to only display on hover

Closes #46824

See merge request gitlab-org/gitlab-ce!19294
This commit is contained in:
Annabel Gray 2018-06-01 01:12:04 +00:00
commit 4e980ea8bc
1 changed files with 3 additions and 1 deletions

View File

@ -2,7 +2,9 @@ import $ from 'jquery';
export default {
bind(el) {
$(el).tooltip();
$(el).tooltip({
trigger: 'hover',
});
},
componentUpdated(el) {