diff --git a/core/modules/widgets/element.js b/core/modules/widgets/element.js index c3d6c96d9..1f6fc6c09 100755 --- a/core/modules/widgets/element.js +++ b/core/modules/widgets/element.js @@ -30,7 +30,7 @@ ElementWidget.prototype.render = function(parent,nextSibling) { this.parentDomNode = parent; this.computeAttributes(); // Neuter blacklisted elements - this.tag = this.parseTreeNode.tag; + this.tag = this.parseTreeNode.tag || "span"; if($tw.config.htmlUnsafeElements.indexOf(this.tag) !== -1) { this.tag = "safe-" + this.tag; }