I have the following code --
<td ng-class="{danger:values.capacity>threshold}">{{values.capacity}}</td>
The problem is that values.capacity has is a string ("70%") and threshold is an int (70). Is there any way I can make the conversion in the HTML?