I\'m wondering if it\'s possible to have a ng-class with class one time binded and class which are evaluated each digest cycle.
Method 1:
class="some-class {{::expression ? 'my-class' : ''}}"
Method 2:
ng-class="::{'my-class': expression}"