altrim/ember-cli-tooltipster

tooltip not going away when selection made in 'select2' box

Closed this issue · 2 comments

I have tooltips on boxes that are set up with ember-select-2.
When I select the content and it is in the box the tooltip does not go away.
I have the tooltip on top and move down to select content in box.
Is there a way to automatically set it to go away in a couple seconds? How do I fix this?

Thanks.

I haven't used ember-select-2 so I am not quite sure what the issue is. If you can provide a repository with your example it would be helpful to track down the issue.
As far as setting the tooltip to go away automatically you can set the timer property on the tooltip that should work.

In the example below the tooltip on the div will go away automatically after 1s.

 {{#tool-tipster title="This is my div's tooltip message!" timer=1000}}
    This div has a tooltip when you hover over it!
 {{/tool-tipster}}

it was just the timer, did not read far enough. Have put timer in and works fine now. Thanks so much.