I am very confuse by the version 1.3+ of angularjs, before I was using bindonce and now we have the lazy loading with '::'.
I didn't find how I can bind only one class of a multiple ng-class.
This was my pevious code:
<a [...] bo-class="{'tuto': user.tutorial}" ng-class="{liked: liked == true}">[...]</a>
I need to use : ng-class"::{'tuto': user.tutorial}" and to keep my second ng-class.
How I can do to merge one bo-class using lazy loading with one ng-class which is bind ?
Thank you !