1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-12-02 14:29:55 +00:00

Update void.js

This commit is contained in:
lin onetwo 2024-08-05 02:58:28 +08:00
parent e7d4819f03
commit af2ddaa350

View File

@ -29,6 +29,7 @@ Render this widget into the DOM
VoidNodeWidget.prototype.render = function(parent,nextSibling) { VoidNodeWidget.prototype.render = function(parent,nextSibling) {
// Nothing to do for a void node, but render the children. Nodes generated by pragma rules are holding everything below it in the children. // Nothing to do for a void node, but render the children. Nodes generated by pragma rules are holding everything below it in the children.
this.parentDomNode = parent; this.parentDomNode = parent;
this.computeAttributes()
this.execute(); this.execute();
this.renderChildren(parent,nextSibling); this.renderChildren(parent,nextSibling);
}; };