I want to show the name of the file when the images are hovered over. This is the current code with the ng-mouseover but it's not working. What am I going wrong?
<div class="row" ng-init="IconTooltip=false">
<p ng-show="IconTooltip">file: {{kus.text | specialCharClean}}</p>
<a ng-repeat="kus in tl_kus" ng-mouseover="IconTooltip=true" ng-mouseleave="IconTooltip=false" ui-sref="app.feedkus({kus:(kus.text|ampToDash)})">
<img class="img-responsive" src="../images/kusegory-icons/{{kus.text | specialCharClean}}.png" width="30">
</a>
</div>