I've set up md-chips in Angular material with the following configuration:
<md-chips md-chips-disable-input ng-model="session.participants">
<!-- Chip removal button template -->
<button md-chip-remove class="md-primary chip-custom" layout="row">
<!-- Tooltip definition -->
<md-tooltip md-direction="top" layout-align="center">
Kick out
</md-tooltip>
<!-- Neat icon -->
<md-icon md-svg-icon="md-close" layout-align="center"></md-icon>
</button>
</md-chips>
Even though md-chips-disable-input is a directive that prevents additional chips from being typed, I'm encountering an issue where the tooltip remains visible after pressing the chip remove button.
Is there a way to automatically hide the tooltip after a specific period of time, or do you have other suggestions for addressing this tooltip problem?