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

This commit is contained in:
Saq Imtiaz
2022-01-19 19:48:02 +00:00
committed by GitHub
parent 35f7a8ea06
commit d823856082
+3
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();
}
};
/*