I have upgraded the angular version from 1.0.8 to 1.4.0.
I have used ng-bind-html-unsafe="value | noHTML | newlines" to wrap down a string. This is not working since the new version.
I tried using the following solution, but still not working .
app.filter('unsafe', function($sce) { return $sce.trustAsHtml; });
and
ng-bind-html-unsafe="value | unsafe | noHTML | newlines"