From b885743efedad0f1318ee8f0bac0e8f39f441094 Mon Sep 17 00:00:00 2001 From: Jermolene Date: Tue, 12 Nov 2013 20:29:22 +0000 Subject: [PATCH] Fix typo --- core/modules/widgets/widget.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/widgets/widget.js b/core/modules/widgets/widget.js index f41325b82..aca142834 100755 --- a/core/modules/widgets/widget.js +++ b/core/modules/widgets/widget.js @@ -218,7 +218,7 @@ Widget.prototype.computeAttributes = function() { value = self.wiki.getTextReference(attribute.textReference,"",self.getVariable("currentTiddler")); } else if(attribute.type === "macro") { var text = self.getVariable(attribute.value.name,{params: attribute.value.params}); - value = self.wiki.renderText("text/plain","text/vnd.tiddlywiki",text,{parentWidget: this}); + value = self.wiki.renderText("text/plain","text/vnd.tiddlywiki",text,{parentWidget: self}); } else { // String attribute value = attribute.value; }