1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-05 03:33:27 +00:00

Corrected dependency skinny/fat handling

This commit is contained in:
Jeremy Ruston 2012-03-01 19:03:04 +00:00
parent 46f019ea83
commit 470b622bb1

View File

@ -64,7 +64,7 @@ var MacroNode = function(macroName,srcParams,children,store,dependencies) {
if(typeof this.srcParams[m] === "function") {
this.dependencies.dependentAll = true;
} else {
this.dependencies.addDependency(this.srcParams[m],paramInfo.skinny);
this.dependencies.addDependency(this.srcParams[m],!paramInfo.skinny);
}
}
}