mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-27 03:57:21 +00:00
Fixed attribute assignment
This commit is contained in:
parent
8146d57190
commit
d99db91dd5
@ -85,6 +85,7 @@ TextEditor.prototype.render = function() {
|
||||
this.editWidget.attributes["class"] += " " + this.editWidget.renderer.parseTreeNode.attributes["class"].value;
|
||||
}
|
||||
if(this.editWidget.renderer.parseTreeNode.attributes.style) {
|
||||
this.editWidget.attributes.style = this.editWidget.attributes.style || "";
|
||||
this.editWidget.attributes.style += this.editWidget.renderer.parseTreeNode.attributes.style.value;
|
||||
}
|
||||
this.editWidget.children = this.editWidget.renderer.renderTree.createRenderers(this.editWidget.renderer.renderContext,[node]);
|
||||
|
Loading…
Reference in New Issue
Block a user