BigW Consortium Gitlab

Commit 4e980ea8 by Annabel Gray

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
parents 76c23de3 6a2fc6dd
......@@ -2,7 +2,9 @@ import $ from 'jquery';
export default {
bind(el) {
$(el).tooltip();
$(el).tooltip({
trigger: 'hover',
});
},
componentUpdated(el) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment