From ad40223d6b9bed435d9381611cb9de1841b53df6 Mon Sep 17 00:00:00 2001 From: Jermolene Date: Thu, 28 Aug 2014 15:16:14 +0100 Subject: [PATCH] Revert incorrect refreshing of tiddler widget Mistakenly, I had changed the tiddler widget to refresh itself when the value of the target tiddler changed. This is not in fact necessary; it only needs to refresh itself when the identity of the target tiddler changes. Fixes #744 --- core/modules/widgets/tiddler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/widgets/tiddler.js b/core/modules/widgets/tiddler.js index 1300bd991..0a49a4155 100755 --- a/core/modules/widgets/tiddler.js +++ b/core/modules/widgets/tiddler.js @@ -70,7 +70,7 @@ Selectively refreshes the widget if needed. Returns true if the widget or any of */ TiddlerWidget.prototype.refresh = function(changedTiddlers) { var changedAttributes = this.computeAttributes(); - if(changedAttributes.tiddler || changedTiddlers[this.tiddlerTitle]) { + if(changedAttributes.tiddler) { this.refreshSelf(); return true; } else {