1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-18 11:29:55 +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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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();
}
};
/*