I have a list of items that are displayed using the following code:
<li class="dropdown-item"
data-toggle="tooltip"
uib-tooltip="tooltip goes here"
data-placement="left"
data-ng-repeat="result in items.results.contextValues.rows "
data-ng-class="{'disabled': result[3] === 'disable' }"
>
{{result[1]}}
</li>
This is the condition for disabling an item:
'disabled': result[3] === 'disable'
How can I add tooltips to the li elements when they are disabled and hovered over?