1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-09-07 13:28:01 +00:00

feat: add support for renderEnd method for storyviews in widget's render() method (#6409)

This commit is contained in:
Saq Imtiaz
2022-01-19 20:48:02 +01:00
committed by GitHub
parent 35f7a8ea06
commit d823856082

View File

@@ -51,6 +51,9 @@ ListWidget.prototype.render = function(parent,nextSibling) {
} else {
this.storyview = null;
}
if(this.storyview && this.storyview.renderEnd) {
this.storyview.renderEnd();
}
};
/*