Skip to content

Instantly share code, notes, and snippets.

@fedotxxl
Created February 6, 2016 12:42
Show Gist options
  • Save fedotxxl/3850c0fb65d0a59549fe to your computer and use it in GitHub Desktop.
Save fedotxxl/3850c0fb65d0a59549fe to your computer and use it in GitHub Desktop.
//ng-bind-html="page.html | to_trusted"
angular.module("common")
.filter("to_trusted", 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