lespoupeesrusses/promethee

View on GitHub
app/views/promethee/utils/_url-safe.html.erb

Summary

Maintainability
Test Coverage
<script>
  promethee.filter('urlSafe', ['$sce', function($sce) {
    return function(val) {
      return $sce.trustAsResourceUrl(val);
    };
  }]);
</script>