Skip to content

Instantly share code, notes, and snippets.

@johhansantana
Last active July 5, 2016 20:18
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 johhansantana/9f64d13880e6c62bc08b9d2ae0c55e1a to your computer and use it in GitHub Desktop.
Save johhansantana/9f64d13880e6c62bc08b9d2ae0c55e1a to your computer and use it in GitHub Desktop.
trust ng-src video urls $sce
app.filter('trusted', function ($sce) {
return function (url) {
return $sce.trustAsResourceUrl(url);
}
});
<video controls>
<source ng-src="{{object.videoUrl | trusted}}" type="video/mp4"> Your browser does not support the video tag.
</video>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment