<!-- ng-bind-html de uma diretiva customizado não funciona -->
<span ng-bind-html="customDirective"></span>
<!-- é renderizado -->
<choices-tab></choices-tab>
//Assim funciona:
$scope.customDirective = '<div class="alert alert-danger">teste</div>';
//Se eu fazer o ng-bind-html de uma diretive não funciona; não é renderizado nada
$scope.customDirective = '<choices-tab></choices-tab>';
angular.module('app')
.directive('choicesTab', function(){
return {
templateUrl: '../choices.html',
link: function(){
}
}
});
ps. The policy works normally without ng-bind-html