We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60bc490 commit e770987Copy full SHA for e770987
src/ngSanitize/sanitize.js
@@ -242,7 +242,7 @@ var inlineElements = angular.extend({}, optionalEndTagInlineElements, toMap("a,a
242
// They can potentially allow for arbitrary javascript to be executed. See #11290
243
var svgElements = toMap("circle,defs,desc,ellipse,font-face,font-face-name,font-face-src,g,glyph," +
244
"hkern,image,linearGradient,line,marker,metadata,missing-glyph,mpath,path,polygon,polyline," +
245
- "radialGradient,rect,stop,svg,switch,text,title,tspan,use");
+ "radialGradient,rect,stop,svg,switch,text,title,tspan");
246
247
// Blocked Elements (will be stripped)
248
var blockedElements = toMap("script,style");
@@ -511,4 +511,4 @@ function stripCustomNsAttrs(node) {
511
512
513
// define ngSanitize module and register $sanitize service
514
-angular.module('ngSanitize', []).provider('$sanitize', $SanitizeProvider);
+angular.module('ngSanitize', []).provider('$sanitize', $SanitizeProvider);
0 commit comments