mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-04-12 22:03:15 +00:00
Let view widget viewers get postRenderInDom() callbacks
This commit is contained in:
parent
28707edd72
commit
dbfbad3dd3
@ -109,6 +109,12 @@ ViewWidget.prototype.refreshInDom = function(changedAttributes,changedTiddlers)
|
||||
}
|
||||
};
|
||||
|
||||
ViewWidget.prototype.postRenderInDom = function() {
|
||||
if(this.viewer && this.viewer.postRenderInDom) {
|
||||
this.viewer.postRenderInDom();
|
||||
}
|
||||
};
|
||||
|
||||
exports.view = ViewWidget;
|
||||
|
||||
})();
|
||||
|
Loading…
x
Reference in New Issue
Block a user