Ok friends, I'm using angular and jquery.
I'm running a ng-repeat
.
<div class="col-sm-6 col-md-4 col-lg-3" ng-repeat="hab in habilities">
<div class="card custom">
<div class="card-block">
<h4 class="card-title">{{hab.name}}</h4>
{{hab.calification | toHabilitiesStar}}
</div>
</div>
</div>
toHabilitiesStar
is a directive that I created that returns a string in html; So far so good.
I researched and I came across with angualar sanitize , I've integrated it in the following way
angular.module('app', ['ngSanitize'])
But the console throws me this error [$injector:modulerr]
- I already downloaded the file and integrated it into my head after angular.js and I already deleted the cache.