1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-04-08 19:56:39 +00:00

fix refresh-blocker

This commit is contained in:
BurningTreeC 2024-09-29 13:30:11 +02:00
parent 84d2ed4880
commit 4cfe55d17c

View File

@ -47,7 +47,7 @@ RefreshBlockerWidget.prototype.refresh = function(changedTiddlers) {
if(changedAttributes.refreshBlockerList) {
this.refreshSelf();
return true;
} else if(this.refreshBlockerList && $tw.utils.hopArray(changedTiddlers,this.wiki.filterTiddlers(this.refreshBlockerList))) {
} else if(this.refreshBlockerList && $tw.utils.hopArray(changedTiddlers,this.wiki.filterTiddlers(this.refreshBlockerList,this))) {
return false;
} else {
return this.refreshChildren(changedTiddlers);