1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-16 02:19:55 +00:00

Fix sandbox attribute for html parser generated iframes

See
https://developer.mozilla.org/en/docs/Web/HTML/Element/iframe#attr-sandb
ox
This commit is contained in:
Jermolene 2016-05-17 15:44:11 -06:00
parent a90cb03975
commit 682b1e7027

View File

@ -24,7 +24,7 @@ var HtmlParser = function(type,text,options) {
tag: "iframe",
attributes: {
src: {type: "string", value: src},
sandbox: {type: "string", value: "sandbox"}
sandbox: {type: "string", value: ""}
}
}];
};