This repository was archived by the owner on May 29, 2019. It is now read-only.
This repository was archived by the owner on May 29, 2019. It is now read-only.
Tooltip to remain open when hovering over it #3040
Closed
Description
Currently the tooltip directive supports only these triggers as defined in the map object:
// Default hide triggers for each show trigger
var triggerMap = {
'mouseenter': 'mouseleave',
'click': 'click',
'focus': 'blur'
};
I was wondering whether it makes sense to support a feature like this: http://jsfiddle.net/WojtekKruszewski/Zf3m7/22/
Where you can hover over the tooltip and it still remains open, this way you enable the users to actually select text inside the tooltip or click links/buttons.
I know that this can be achieved with the focus trigger but imho hover is better from UX perspective.