ng-bind-html-unsafe
was removed in Angular 1.2
I\'m trying to implement something where I need to use ng-bind-html-unsafe
. In the docs and
That should be:
plus in your controller:
$scope.html = '- render me please
';
$scope.trustedHtml = $sce.trustAsHtml($scope.html);
instead of old syntax, where you could reference $scope.html
variable directly:
As several commenters pointed out, $sce
has to be injected in the controller, otherwise you will get $sce undefined
error.
var myApp = angular.module('myApp',[]);
myApp.controller('MyController', ['$sce', function($sce) {
// ... [your code]
}]);