mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-05 08:42:49 -08:00
Fix the execution context for widget attributes specified as macros
We need to ensure that variables in the tree up to this point are accessible when we render the macro text.
This commit is contained in:
parent
439dfcb172
commit
4a5a8dd773
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
value = self.wiki.renderText("text/plain","text/vnd.tiddlywiki",text,{parentWidget: this});
|
||||
} else { // String attribute
|
||||
value = attribute.value;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue