When using this HTML inside an ng-repeat, there is a difference in behavior:
This part works fine:
<tr>
<td ng-class="info.lastInMonth">{{ info.date_formatted }}</td>
...
But this section does not work as expected:
<tr ng-class="info.lastInMonth">
<td>{{ info.date_formatted }}</td>
...
It seems that the same expression works when applied to the td element, but not when applied to the tr element. Any insights on why this might be happening?