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:
commit
4e980ea8bc
1 changed files with 3 additions and 1 deletions
|
@ -2,7 +2,9 @@ import $ from 'jquery';
|
|||
|
||||
export default {
|
||||
bind(el) {
|
||||
$(el).tooltip();
|
||||
$(el).tooltip({
|
||||
trigger: 'hover',
|
||||
});
|
||||
},
|
||||
|
||||
componentUpdated(el) {
|
||||
|
|
Loading…
Reference in a new issue