Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@yoren
Last active August 29, 2015 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yoren/c885281713b45a39c746 to your computer and use it in GitHub Desktop.
Save yoren/c885281713b45a39c746 to your computer and use it in GitHub Desktop.
Bypass sanitization for values you know are safe
<h1>{{post.title}}</h1>
<div ng-bind-html="post.content | toTrusted"></div>
angular.module('app', ['ngRoute'])
// ...
.filter('toTrusted', ['$sce', function($sce) {
return function(text) {
return $sce.trustAsHtml(text);
};
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment