From 6e2f6382b0c4efa0d81f8fb944026e412247a858 Mon Sep 17 00:00:00 2001 From: BurningTreeC Date: Sat, 28 Sep 2024 11:12:05 +0200 Subject: [PATCH] remove console log --- core/modules/widgets/refresh-blocker.js | 1 - 1 file changed, 1 deletion(-) diff --git a/core/modules/widgets/refresh-blocker.js b/core/modules/widgets/refresh-blocker.js index 69a8c2e30..790b2242f 100644 --- a/core/modules/widgets/refresh-blocker.js +++ b/core/modules/widgets/refresh-blocker.js @@ -49,7 +49,6 @@ RefreshBlockerWidget.prototype.refresh = function(changedTiddlers) { var changedAttributes = this.computeAttributes(); var refreshBlockerList = this.wiki.filterTiddlers(this.getAttribute("refreshBlockerList")); if(refreshBlockerList && (this.getAttribute("enabled") === "yes") && $tw.utils.hopArray(changedTiddlers,refreshBlockerList)) { - console.log("false"); return false; } else { return this.refreshChildren(changedTiddlers);