1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-11-21 01:34:51 +00:00

Fix invocation of JS macros

This commit is contained in:
jeremy@jermolene.com
2022-05-21 16:31:34 +01:00
parent e50101322f
commit ec1ec8ccd8
3 changed files with 21 additions and 3 deletions

View File

@@ -148,7 +148,8 @@ Widget.prototype.getVariableInfo = function(name,options) {
}
// If the variable doesn't exist in the parent widget then look for a macro module
return {
text: this.evaluateMacroModule(name,actualParams,options.defaultValue)
text: this.evaluateMacroModule(name,actualParams,options.defaultValue),
srcVariable: {}
};
};