mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-02-02 12:19:11 +00:00
feat: add support for renderEnd method for storyviews in widget's render() method (#6409)
This commit is contained in:
parent
35f7a8ea06
commit
d823856082
@ -51,6 +51,9 @@ ListWidget.prototype.render = function(parent,nextSibling) {
|
|||||||
} else {
|
} else {
|
||||||
this.storyview = null;
|
this.storyview = null;
|
||||||
}
|
}
|
||||||
|
if(this.storyview && this.storyview.renderEnd) {
|
||||||
|
this.storyview.renderEnd();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user