Skip to content

Commit

Permalink
Merge pull request #1167 from h-kataria/std_output_fix
Browse files Browse the repository at this point in the history
Removed decodeURI call.
  • Loading branch information
himdel authored Apr 27, 2017
2 parents 5630694 + 9e0cffa commit 48b51dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ angular
.controller('SanitizeAndRenderController', ['$sce', function SanitizeAndRenderCtrl($sce) {
var vm = this;
vm.sanitizeRenderHtml = function(str) {
return $sce.trustAsHtml(decodeURI(str));
return $sce.trustAsHtml(str);
};
}]);

0 comments on commit 48b51dd

Please sign in to comment.