Commit f06525ab authored by Enrique Alcántara's avatar Enrique Alcántara

Merge branch '328050-honor-haml-tooltips-delay' into 'master'

Do not show tooltips immediately

See merge request gitlab-org/gitlab!59561
parents 155e66fc 9b543f69
...@@ -44,10 +44,7 @@ const addTooltips = (elements, config) => { ...@@ -44,10 +44,7 @@ const addTooltips = (elements, config) => {
const handleTooltipEvent = (rootTarget, e, selector, config = {}) => { const handleTooltipEvent = (rootTarget, e, selector, config = {}) => {
for (let { target } = e; target && target !== rootTarget; target = target.parentNode) { for (let { target } = e; target && target !== rootTarget; target = target.parentNode) {
if (isTooltip(target, selector)) { if (isTooltip(target, selector)) {
addTooltips([target], { addTooltips([target], config);
show: true,
...config,
});
break; break;
} }
} }
......
---
title: Ensure all tooltips appear with a 500ms delay
merge_request: 59561
author:
type: fixed
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