I want to evaluate multiple expressions, but the class applied will be the same. Here's an example...
<tr ng-class="{'highlight' : Expression1 || Expression2 || Expression3}">
If any of the expressions are true, it will apply the highlight
class. I have tried a few versions, but I'm not sure if this is the correct approach.
<tr ng-class="{'highlight' : Expression1, 'highlight' : Expression2 }">
<tr ng-class="[{'highlight' : Expression1, 'highlight' : Expression2 }]">
None of these seem to work, and all the example I have seen apply a different class to each evaluation.